Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / tests / ImplRepo / oneway / Test_i.h
blobbb117cfc24758965f14871194172855eaec22418
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 Terminator;
14 class Test_i : public virtual POA_Test
16 public:
17 //Constructor
18 Test_i ();
20 //Destructor
21 virtual ~Test_i ();
23 virtual void foo ();
25 virtual CORBA::Short get_call_count ();
27 private:
28 CORBA::Short count_;
31 #endif /* TEST_I_H_ */