summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2375_Regression/test.cpp
blob: 2a2d57db0e71f81428e94f88b34c6e28fc86697d (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 main (int , char *[]) {
  MyTestValuetypeFactory myFactory;
  return 0;
}