Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / DII_AMI_Forward / test_i.h
blob7ea49cad5b5b56c5d422360a4bbc4a1437f67c71
1 // -*- C++ -*-
4 #ifndef TEST_I_H
5 #define TEST_I_H
7 #include "testS.h"
9 class Forward_Test_i : public POA_Forward::Test
11 // = TITLE
12 // Location Forward exception tester
14 // = DESCRIPTION
15 // servant throws a location forward exception when constructed with a
16 // target IOR, otherwise it echos the source string.
18 public:
19 Forward_Test_i (CORBA::ORB_ptr orb);
21 char * do_forward (const char *text);
22 void shutdown ();
24 private:
25 CORBA::ORB_var orb_;
28 #endif /* TEST_I_H */