summaryrefslogtreecommitdiff
path: root/x11/ipc/server/main.cpp
Unidiff
Diffstat (limited to 'x11/ipc/server/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--x11/ipc/server/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/x11/ipc/server/main.cpp b/x11/ipc/server/main.cpp
new file mode 100644
index 0000000..bc359c9
--- a/dev/null
+++ b/x11/ipc/server/main.cpp
@@ -0,0 +1,13 @@
1#include <qapplication.h>
2#include "ocopserver.h"
3
4
5int main( int argc, char* argv[] ) {
6 QApplication app(argc, argv );
7
8 /* get the server started */
9 OCopServer server;
10
11 /* enter the event loop */
12 return app.exec();
13};