summaryrefslogtreecommitdiff
path: root/TAO/tao/TypeCode_Constants.h
blob: c498be0606d6291695484feda15b37b95173288a (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// -*- C++ -*-

//=============================================================================
/**
 *  @file   TypeCode_Constants.h
 *
 *  $Id$
 *
 *  Declare the @c TypeCode constants available to the ORB and user
 *  applications.
 *
 *  @author Jeff Parsons
 *  @author Ossama Othman
 */
//=============================================================================

#ifndef TAO_TYPECODE_CONSTANTS_H
#define TAO_TYPECODE_CONSTANTS_H

#include /**/ "ace/pre.h"

#include "tao/TAO_Export.h"

namespace CORBA
{
  class TypeCode;
  typedef TypeCode * TypeCode_ptr;

  /**
   * @name TypeCode Constants
   *
   * All the TypeCode constants
   */
  //@{
  extern TypeCode_ptr const _tc_null;
  extern TypeCode_ptr const _tc_void;
  extern TypeCode_ptr const _tc_boolean;
  extern TypeCode_ptr const _tc_char;
  extern TypeCode_ptr const _tc_wchar;
  extern TypeCode_ptr const _tc_short;
  extern TypeCode_ptr const _tc_ushort;
  extern TypeCode_ptr const _tc_long;
  extern TypeCode_ptr const _tc_ulong;
  extern TypeCode_ptr const _tc_longlong;
  extern TypeCode_ptr const _tc_ulonglong;
  extern TypeCode_ptr const _tc_float;
  extern TypeCode_ptr const _tc_double;
  extern TypeCode_ptr const _tc_longdouble;
  extern TypeCode_ptr const _tc_octet;
  extern TypeCode_ptr const _tc_any;
  extern TypeCode_ptr const _tc_TypeCode;
  extern TypeCode_ptr const _tc_Principal;

  extern TypeCode_ptr const _tc_string;
  extern TypeCode_ptr const _tc_wstring;

  extern TypeCode_ptr const _tc_Object;
  extern TypeCode_ptr const _tc_Component;
  extern TypeCode_ptr const _tc_Home;

  extern TypeCode_ptr const _tc_ValueBase;
  extern TypeCode_ptr const _tc_EventBase;
  //@}
}

#include /**/ "ace/post.h"

#endif /* TAO_TYPECODE_CONSTANTS_H */