summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP_Message_Generator_Parser_Impl.h
blob: 69c66192b67dc535166aa520c70fe83e8c904635 (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
// -*- C++ -*-

// ===================================================================
/**
 *  @file   GIOP_Message_Generator_Parser_Impl.h
 *
 *  @author Balachandran Natarajan <bala@cs.wustl.edu>
 */
// ===================================================================

#ifndef TAO_GIOP_MESSAGE_GENERATOR_PARSER_IMPL_H
#define TAO_GIOP_MESSAGE_GENERATOR_PARSER_IMPL_H

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

#include "tao/GIOP_Message_Generator_Parser_11.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "tao/GIOP_Message_Generator_Parser_12.h"
#include "tao/orbconf.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

/**
 * @class TAO_GIOP_Message_Generator_Parser_Impl
 *
 * @brief This class holds all the different GIOP message generators
 *  and parsers.
 *
 *  This class can be done away with if we want to use the svc.conf
 *  file to load the right GIOP protocol. But that would require some
 *  work as we need to make sure that we have the behavior of lower
 *  versions in the higher versions.
 */
class TAO_GIOP_Message_Generator_Parser_Impl
{
public:
  /// Performs a check of the revision numbers
  static CORBA::Boolean check_revision (CORBA::Octet incoming_major,
                                        CORBA::Octet incoming_minor);

  /// Version 1.0 of GIOP
  TAO_GIOP_Message_Generator_Parser_10 tao_giop_10;

  /// Version 1.1 of GIOP
  TAO_GIOP_Message_Generator_Parser_11 tao_giop_11;

  /// Version 1.2 of GIOP
  TAO_GIOP_Message_Generator_Parser_12 tao_giop_12;
};

TAO_END_VERSIONED_NAMESPACE_DECL


#if defined (__ACE_INLINE__)
# include "tao/GIOP_Message_Generator_Parser_Impl.inl"
#endif /* __ACE_INLINE__ */

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