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