summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2375_Regression/test.cpp
blob: c7a97c174cacf0f1c0956d2029f6a2b728df0d62 (plain)
1
2
3
4
5
6
7
8
9
10
#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 ACE_TMAIN (int, ACE_TCHAR *[]) {
  MyTestValuetypeFactory myFactory;
  return 0;
}