Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_1254_Regression / BlobServer.h
blob3875b04a7f4ab6816895e55bd94c07ee90b02476
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
20 virtual void shutdown (void);
22 private:
23 /// Use an ORB reference to convert strings to objects and shutdown
24 /// the application.
25 CORBA::ORB_var orb_;
28 #include /**/ "ace/post.h"
29 #endif /* BLOBSERVER_H */