Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / ORT / ORT_test_i.h
blob59e81fb7bbdec76b8d96d8d73f2c91fa0ac271ec
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:
25 ORT_test_i (CORBA::ORB_ptr orb);
27 virtual CORBA::Boolean request_server (void);
29 virtual void shutdown (void);
31 private:
33 CORBA::ORB_var orb_;
38 #endif /* ORT_TEST_I_H */