summaryrefslogtreecommitdiff
path: root/x11/ipc/server/main.cpp
Side-by-side diff
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 @@
+#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();
+};