summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/Hardpack/IDL_Cubit/cubit_impl.hh
blob: 8cb5312cc1fbd71e171f7f64b8807760e765ff79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef __cubit__impl_hh_def
#define __cubit__impl_hh_def

#include "cubit.hh"

// This file is a skeleton for the _impl class.


//============== Cubit_impl ==============
class Cubit_impl;
typedef Cubit_impl * Cubit_impl_ptr;

class Cubit_impl : public virtual _sk_Cubit {
public: 

Cubit_impl();
~Cubit_impl();

void cube_oneway(
  );
void cube_void(
  );
CORBA::Octet cube_octet(
          CORBA::Octet o
  );
CORBA::Short cube_short(
          CORBA::Short s
  );
CORBA::Long cube_long(
          CORBA::Long l
  );
Cubit::Many cube_struct(
          const Cubit::Many& values
  );
void cube_long_sequence(
          const Cubit::long_seq& input,
         Cubit::long_seq*& output
  );
void cube_octet_sequence(
          const Cubit::octet_seq& input,
         Cubit::octet_seq*& output
  );
void shutdown(
  );
private:
}; // End of class Cubit_impl

#endif