Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / LongDouble / LongDoubleTest.h
blobf8b0c2a97c1a28c71fbcc6b86f75cb9de04e3c7b
2 #ifndef LONGDOUBLETEST_H
3 #define LONGDOUBLETEST_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::LongDoubleTest interface
9 class LongDoubleTest
10 : public virtual POA_Test::LongDoubleTest
12 public:
13 /// Constructor
14 LongDoubleTest (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 virtual CORBA::LongDouble get_long_double ();
19 virtual void shutdown ();
21 private:
22 /// Use an ORB reference to convert strings to objects and shutdown
23 /// the application.
24 CORBA::ORB_var orb_;
27 #include /**/ "ace/post.h"
28 #endif /* LONGDOUBLETEST_H */