15 lines
302 B
C++
15 lines
302 B
C++
// This is an example not a library
|
|
/*
|
|
SPDX-FileCopyrightText: 2009 Daniel Nicoletti <dantti85-pk@yahoo.com.br>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "PkExampleHelper.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
PkExampleHelper example(argc, argv);
|
|
return example.exec();
|
|
}
|