Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / DevGuideExamples / PortableInterceptors / Auth / Messenger_i.cpp
blob12ea090e3f7d3b1ffe4ab95a7fa5abfa258464e8
1 /* -*- C++ -*- */
3 // ****** Code generated by the The ACE ORB (TAO) IDL Compiler *******
4 // TAO and the TAO IDL Compiler have been developed by the Center for
5 // Distributed Object Computing at Washington University, St. Louis.
6 //
7 // Information about TAO is available at:
8 // https://www.dre.vanderbilt.edu/~schmidt/TAO.html
10 #include "Messenger_i.h"
11 #include <iostream>
13 // Implementation skeleton constructor
14 Messenger_i::Messenger_i ()
18 // Implementation skeleton destructor
19 Messenger_i::~Messenger_i ()
23 CORBA::Boolean Messenger_i::send_message (const char * user_name,
24 const char * subject,
25 char *& message)
27 //Add your implementation here
28 std::cerr << "Message from: " << user_name << std::endl;
29 std::cerr << "Subject: " << subject << std::endl;
30 std::cerr << "Message: " << message << std::endl;
31 return true;