repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git]
/
ACE
/
examples
/
APG
/
Logging
/
Wrap_Macros_Alt.cpp
blob
81a61cc2aa4249b545426c905067e53735d546f1
1
#include
"Log_Msg_Alt.h"
2
3
void
foo
();
4
5
int
ACE_TMAIN
(
int
,
ACE_TCHAR
*[])
6
{
7
ACE_TRACE
(
"main"
);
8
9
// Listing 1 code/ch03
10
ACE_DEBUG
((
MY_DEBUG
ACE_TEXT
(
"Hi Mom
\n
"
)));
11
12
ACE_DEBUG
((
MY_DEBUG
ACE_TEXT
(
"Goodnight
\n
"
)));
13
// Listing 1
14
15
return
0
;
16
}