summaryrefslogtreecommitdiff
path: root/TAO/interop-tests/AnyTypeCode/tao/BaseValueFactory.h
blob: dc759353d10d333049b1ce5a0f7f588fe0bb9fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// -*- C++ -*-
#ifndef BASEVALUEFACTORY_H
#define BASEVALUEFACTORY_H

#include "DemoC.h"

class Demo_BaseValueFactory : public virtual Demo::BaseValue_init
{
public:
  virtual CORBA::ValueBase* create_for_unmarshal();
  virtual Demo::BaseValue* create(const char * str);
};

#endif