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 #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
DevGuideExamples
/
ImplRepo
/
Basic
/
Messenger_i.h
blob
af61f133d8769caf314ff470d803dd3f7739ed10
1
#ifndef MESSENGERI_H_
2
#define MESSENGERI_H_
3
4
#include
"MessengerS.h"
5
6
class
Messenger_i
:
public virtual
POA_Messenger
7
{
8
int
count
;
9
public
:
10
Messenger_i
() :
count
(
0
) {}
11
virtual CORBA
::
Boolean
send_message
(
12
const char
*
user_name
,
13
const char
*
subject
,
14
char
*&
message
);
15
};
16
17
#endif