Merge pull request #2306 from mitza-oci/warnings
[ACE_TAO.git] / TAO / orbsvcs / tests / ImplRepo / Bug_4152_Regression / Test_i.h
blob558200f84294079b57ab26877beff5c9f305fe0a
1 /* -*- C++ -*- */
3 #ifndef TEST_I_H_
4 #define TEST_I_H_
6 #include "TestS.h"
8 #if !defined (ACE_LACKS_PRAGMA_ONCE)
9 #pragma once
10 #endif /* ACE_LACKS_PRAGMA_ONCE */
12 class Test_i : public virtual POA_Test
14 public:
15 Test_i (CORBA::ORB_ptr orb);
16 virtual CORBA::Short get_server_num ();
18 virtual void terminate ();
20 virtual void shutdown ();
21 private:
22 CORBA::ORB_var orb_;
25 #endif /* TEST_I_H_ */