summaryrefslogtreecommitdiff
path: root/TAO/tests/Cubit/COOL/MT_Cubit/cubit_impl.h
blob: 20cf27424afa5f7f46e89a801be951cf3b1dbc87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$

#ifndef cubit_ih
#define cubit_ih

#include <corba/cool.H>
#include "cubit.H"

class Cubit_Impl {

public:
        virtual CORBA_Octet cube_octet (CORBA_Octet o, CORBA_Environment &IT_env=_environment);
        virtual CORBA_Short cube_short (CORBA_Short s, CORBA_Environment &IT_env=_environment);
        virtual CORBA_Long cube_long (CORBA_Long l, CORBA_Environment &IT_env=_environment);
        virtual Cubit::Many cube_struct (const Cubit::Many& values, CORBA_Environment &IT_env=_environment);
        virtual Cubit::oneof cube_union (const Cubit::oneof& values, CORBA_Environment &IT_env=_environment);
        virtual void please_exit (CORBA_Environment &IT_env=_environment);
};


#endif