1 #include "started_pch.h"
4 // ****** Code generated by the The ACE ORB (TAO) IDL Compiler *******
5 // TAO and the TAO IDL Compiler have been developed by the Center for
6 // Distributed Object Computing at Washington University, St. Louis.
8 // Information about TAO is available at:
9 // http://www.dre.vanderbilt.edu/~schmidt/TAO.html
11 #include "Messenger_i.h"
13 // Implementation skeleton constructor
14 Messenger_i::Messenger_i ()
18 // Implementation skeleton destructor
19 Messenger_i::~Messenger_i ()
24 Messenger_i::send_message (
25 const char * user_name
,
29 std::cout
<< "Message from: " << user_name
<< std::endl
;
30 std::cout
<< "Subject: " << subject
<< std::endl
;
31 std::cout
<< "Message: " << message
<< std::endl
;
32 CORBA::string_free(message
);
33 message
= CORBA::string_dup("Thanks for the message.");