Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_1254_Regression / BlobServer.h
blobdfde196a963d3cdfdeecb4f29f7d0ae0ff9913ac
2 #ifndef BLOBSERVER_H
3 #define BLOBSERVER_H
4 #include /**/ "ace/pre.h"
6 #include "testS.h"
8 class BlobServerImpl
9 : public virtual POA_BlobServer
11 public:
12 /// Constructor
13 BlobServerImpl (CORBA::ORB_ptr orb);
15 // = The skeleton methods
16 virtual void test(
17 BlobType1& blob1,
18 BlobType2& blob2);
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 /* BLOBSERVER_H */