summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2375_Regression/test.cpp
diff options
context:
space:
mode:
authorsmcqueen <smcqueen@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-02-09 16:34:12 +0000
committersmcqueen <smcqueen@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-02-09 16:34:12 +0000
commit61575a08b1c1c01e275314899777fdc8172f245b (patch)
tree05385890855387419ff94ef78e8bd4ac46886455 /TAO/tests/Bug_2375_Regression/test.cpp
parent25b584c5868465a15f12c8ae8c0e720ad0e2edb7 (diff)
downloadATCD-61575a08b1c1c01e275314899777fdc8172f245b.tar.gz
ChangeLogTag: Thu Feb 9 14:06:09 UTC 2006 Simon McQueen <sm@prismtech.com>
Diffstat (limited to 'TAO/tests/Bug_2375_Regression/test.cpp')
-rwxr-xr-xTAO/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 100755
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;
+}