Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Native_Exceptions / test_i.h
blobc4c25e17e764eeceb731e934eb065af62a753d82
2 //=============================================================================
3 /**
4 * @file test_i.h
6 * @author Carlos O'Ryan
7 */
8 //=============================================================================
11 #ifndef TAO_NATIVE_EXCEPTIONS_TEST_I_H
12 #define TAO_NATIVE_EXCEPTIONS_TEST_I_H
14 #include "testS.h"
16 /**
17 * @class Simple_Server_i
19 * @brief Simpler Server implementation
21 * Implements the Simple_Server interface in test.idl
23 class Simple_Server_i : public POA_Simple_Server
25 public:
26 /// ctor
27 Simple_Server_i (CORBA::ORB_ptr orb);
29 // = The Simple_Server methods.
30 CORBA::Long test_method (CORBA::Long x);
32 CORBA::Long test_raise (CORBA::Long x);
34 void shutdown ();
36 private:
37 CORBA::ORB_var orb_;
40 #if defined(__ACE_INLINE__)
41 #include "test_i.inl"
42 #endif /* __ACE_INLINE__ */
44 #endif /* TAO_NATIVE_EXCEPTIONS_TEST_I_H */