summaryrefslogtreecommitdiff
path: root/libopie2/examples/opiecore/oprocessdemo
Unidiff
Diffstat (limited to 'libopie2/examples/opiecore/oprocessdemo') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/examples/opiecore/oprocessdemo/.cvsignore7
-rw-r--r--libopie2/examples/opiecore/oprocessdemo/oprocessdemo.cpp13
-rw-r--r--libopie2/examples/opiecore/oprocessdemo/oprocessdemo.pro12
3 files changed, 0 insertions, 32 deletions
diff --git a/libopie2/examples/opiecore/oprocessdemo/.cvsignore b/libopie2/examples/opiecore/oprocessdemo/.cvsignore
deleted file mode 100644
index ab9cb4d..0000000
--- a/libopie2/examples/opiecore/oprocessdemo/.cvsignore
+++ b/dev/null
@@ -1,7 +0,0 @@
1oprocessdemo
2Makefile*
3moc*
4*moc
5*.o
6~*
7
diff --git a/libopie2/examples/opiecore/oprocessdemo/oprocessdemo.cpp b/libopie2/examples/opiecore/oprocessdemo/oprocessdemo.cpp
deleted file mode 100644
index c5fc328..0000000
--- a/libopie2/examples/opiecore/oprocessdemo/oprocessdemo.cpp
+++ b/dev/null
@@ -1,13 +0,0 @@
1#include <opie2/oprocess.h>
2#include <stdio.h>
3
4using namespace Opie::Core;
5
6int main( int argc, char** argv )
7{
8 printf( "my own PID seems to be '%d'\n", OProcess::processPID( "oprocessdemo" ) );
9 printf( "the PID of process 'Mickey' seems to be '%d'\n\n", OProcess::processPID( "Mickey" ) );
10
11 return 0;
12}
13
diff --git a/libopie2/examples/opiecore/oprocessdemo/oprocessdemo.pro b/libopie2/examples/opiecore/oprocessdemo/oprocessdemo.pro
deleted file mode 100644
index 7efc614..0000000
--- a/libopie2/examples/opiecore/oprocessdemo/oprocessdemo.pro
+++ b/dev/null
@@ -1,12 +0,0 @@
1TEMPLATE = app
2CONFIG = qt warn_on
3HEADERS =
4SOURCES = oprocessdemo.cpp
5INCLUDEPATH += $(OPIEDIR)/include
6DEPENDPATH += $(OPIEDIR)/include
7LIBS += -lopiecore2
8TARGET = oprocessdemo
9
10include( $(OPIEDIR)/include.pro )
11
12