Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / ORT / ORT_test_i.h
blobfca38d4dd19a05e8bcdde8db839bf595367f94ea
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file ORT_test_i.h
7 * Implementation header for the "server" IDL interface for the
8 * ORT example.
10 * @author Priyanka Gontla <gontla_p@ociweb.com>
12 //=============================================================================
15 #ifndef ORT_TEST_I_H
16 #define ORT_TEST_I_H
18 #include "ORT_testS.h"
21 class ORT_test_i : public virtual POA_ObjectReferenceTemplate::ORT_test
23 public:
24 ORT_test_i (CORBA::ORB_ptr orb);
26 virtual CORBA::Boolean request_server ();
28 virtual void shutdown ();
30 private:
31 CORBA::ORB_var orb_;
35 #endif /* ORT_TEST_I_H */