blob: bc359c949b93d4a553a15fb9a499615034dcf637 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <qapplication.h>
#include "ocopserver.h"
int main( int argc, char* argv[] ) {
QApplication app(argc, argv );
/* get the server started */
OCopServer server;
/* enter the event loop */
return app.exec();
};
|