summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1254_Regression/BlobServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_1254_Regression/BlobServer.h')
-rw-r--r--TAO/tests/Bug_1254_Regression/BlobServer.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/TAO/tests/Bug_1254_Regression/BlobServer.h b/TAO/tests/Bug_1254_Regression/BlobServer.h
new file mode 100644
index 00000000000..01e568a32c5
--- /dev/null
+++ b/TAO/tests/Bug_1254_Regression/BlobServer.h
@@ -0,0 +1,32 @@
+//
+// $Id$
+//
+
+#ifndef BLOBSERVER_H
+#define BLOBSERVER_H
+#include /**/ "ace/pre.h"
+
+#include "testS.h"
+
+class BlobServerImpl
+ : public virtual POA_BlobServer
+{
+public:
+ /// Constructor
+ BlobServerImpl (CORBA::ORB_ptr orb);
+
+ // = The skeleton methods
+ virtual void test(
+ BlobType1& blob1,
+ BlobType2& blob2
+ );
+ virtual void shutdown (void);
+
+private:
+ /// Use an ORB reference to convert strings to objects and shutdown
+ /// the application.
+ CORBA::ORB_var orb_;
+};
+
+#include /**/ "ace/post.h"
+#endif /* BLOBSERVER_H */