summaryrefslogtreecommitdiff
path: root/TAO/examples/Simulator/DOVEMIB/any_test_i.h
blob: 673b892fb19d412b278f5bba3b82c0b3d3c53fa5 (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
// $Id$

// ============================================================================
//
// = LIBRARY
//
// = FILENAME
//    any_test_i.h
//
// = AUTHOR
//   Michael Kircher
//
// ============================================================================

#ifndef _ANY_TEST_I_HH
#define _ANY_TEST_I_HH

#include "any_testS.h"

// Forward declarations
class Any_Test_i;

// Typedefs.
typedef Any_Test_i *Any_Test_i_ptr;
typedef Any_Test_i_ptr Any_Test_i_ref;

class Any_Test_i : public POA_Any_Test
  // = TITLE
  // = DESCRIPTION
{
public:
  Any_Test_i (const char *obj_name = 0);
  // Constructor

  ~Any_Test_i (void);
  // Destructor

  virtual void try_an_any (const CORBA::Any &a,
                                   CORBA::Environment &env);
};

#endif /* _ANY_TEST_I_HH */