Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / DevGuideExamples / Multithreading / GracefulShutdown / Messenger_i.h
blobad49fec836e2491d7faeb58767872f5da54a7b5b
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 // http://www.dre.vanderbilt.edu/~schmidt/TAO.html
10 #ifndef MESSENGER_I_H_
11 #define MESSENGER_I_H_
13 #include "MessengerS.h"
15 #if !defined (ACE_LACKS_PRAGMA_ONCE)
16 #pragma once
17 #endif /* ACE_LACKS_PRAGMA_ONCE */
19 //Class Messenger_i
20 class Messenger_i : public virtual POA_Messenger
22 public:
23 //Constructor
24 Messenger_i (CORBA::ORB_ptr orb);
26 //Destructor
27 virtual ~Messenger_i ();
29 virtual CORBA::Boolean send_message (
30 const char * user_name,
31 const char * subject,
32 char *& message
35 virtual void shutdown ();
37 private:
38 CORBA::ORB_var orb_;
41 #endif /* MESSENGER_I_H_ */