repo.or.cz
/
pwlib.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes to PDirectory
[pwlib.git]
/
samples
/
hello_world
/
hello.cxx
blob
9eff07d25543a9ea3553621fe0ff2b0567b3a9ab
1
//
2
// hello.cxx
3
//
4
// Equivalence Pty. Ltd.
5
//
6
7
#include <ptlib.h>
8
9
class
Hello
:
public
PProcess
10
{
11
PCLASSINFO
(
Hello
,
PProcess
)
12
public
:
13
void
Main
();
14
};
15
16
PCREATE_PROCESS
(
Hello
)
17
18
void
Hello
::
Main
()
19
{
20
cout
<<
"Hello world!
\n
"
;
21
}
22
23
// End of hello.cxx