summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2375_Regression/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2375_Regression/test.cpp')
-rw-r--r--TAO/tests/Bug_2375_Regression/test.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/TAO/tests/Bug_2375_Regression/test.cpp b/TAO/tests/Bug_2375_Regression/test.cpp
new file mode 100644
index 00000000000..2a2d57db0e7
--- /dev/null
+++ b/TAO/tests/Bug_2375_Regression/test.cpp
@@ -0,0 +1,11 @@
+// $Id$
+#include "testC.h"
+class MyTestValuetypeFactory : public TestValuetype_init {
+public:
+ virtual TestValuetype* create (::CORBA::Boolean, ::CORBA::Short) {return 0;};
+ virtual TAO_OBV_CREATE_RETURN_TYPE (TestValuetype) create_for_unmarshal (void) {return 0;};
+};
+int main (int , char *[]) {
+ MyTestValuetypeFactory myFactory;
+ return 0;
+}