Fixes to PDirectory
[pwlib.git] / samples / hello_world / hello.cxx
blob9eff07d25543a9ea3553621fe0ff2b0567b3a9ab
1 //
2 // hello.cxx
3 //
4 // Equivalence Pty. Ltd.
5 //
7 #include <ptlib.h>
9 class Hello : public PProcess
11 PCLASSINFO(Hello, PProcess)
12 public:
13 void Main();
16 PCREATE_PROCESS(Hello)
18 void Hello::Main()
20 cout << "Hello world!\n";
23 // End of hello.cxx