You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-06 23:56:13 +02:00
20 lines
237 B
C
20 lines
237 B
C
![]() |
#ifndef CLIAPPLICATION_H
|
||
|
#define CLIAPPLICATION_H
|
||
|
|
||
|
#include <stable.h>
|
||
|
|
||
|
namespace jop {
|
||
|
|
||
|
class CliApplication : public QCoreApplication {
|
||
|
|
||
|
public:
|
||
|
|
||
|
CliApplication(int &argc, char **argv);
|
||
|
int exec();
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // CLIAPPLICATION_H
|