diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:11 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:11 +0000 |
commit | 6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch) | |
tree | da50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/GIOP_Message_Version.h | |
parent | 0e555b9150d38e3b3473ba325b56db2642e6352b (diff) | |
download | ATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz |
Repo restructuring
Diffstat (limited to 'TAO/tao/GIOP_Message_Version.h')
-rw-r--r-- | TAO/tao/GIOP_Message_Version.h | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/TAO/tao/GIOP_Message_Version.h b/TAO/tao/GIOP_Message_Version.h deleted file mode 100644 index f563af8004d..00000000000 --- a/TAO/tao/GIOP_Message_Version.h +++ /dev/null @@ -1,75 +0,0 @@ -// -*- C++ -*- - -//============================================================================= -/** - * @file GIOP_Message_Version.h - * - * $Id$ - * - * GIOP Version utility class definition - * - * - * @author Chris Cleeland <cleeland@cs.wustl.edu> - * @author Carlos O' Ryan <coryan@uci.edu> - */ -//============================================================================= - -#ifndef TAO_GIOP_MESSAGE_VERSION_H -#define TAO_GIOP_MESSAGE_VERSION_H - -#include /**/ "ace/pre.h" - -#include "tao/TAO_Export.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "tao/Basic_Types.h" -#include "tao/orbconf.h" - -TAO_BEGIN_VERSIONED_NAMESPACE_DECL - -class TAO_ORB_Core; - -/** - * @class TAO_GIOP_Message_Version - * - * @brief Major and Minor version number of the Inter-ORB Protocol. - */ -class TAO_Export TAO_GIOP_Message_Version -{ -public: - - /// Major version number - CORBA::Octet major; - - /// Minor version number - CORBA::Octet minor; - - /// Copy constructor - TAO_GIOP_Message_Version (const TAO_GIOP_Message_Version &src); - - /// Default constructor. - TAO_GIOP_Message_Version (CORBA::Octet maj = TAO_DEF_GIOP_MAJOR, - CORBA::Octet min = TAO_DEF_GIOP_MINOR); - - /// Explicitly set the major and minor version. - void set_version (CORBA::Octet maj, CORBA::Octet min); - - /// Copy operator. - TAO_GIOP_Message_Version &operator= (const TAO_GIOP_Message_Version &src); - - /// Equality operator - bool operator== (const TAO_GIOP_Message_Version &src); - bool operator!= (const TAO_GIOP_Message_Version &src); -}; - -TAO_END_VERSIONED_NAMESPACE_DECL - -#if defined (__ACE_INLINE__) -# include "tao/GIOP_Message_Version.inl" -#endif /* __ACE_INLINE__ */ - -#include /**/ "ace/post.h" -#endif /*TAO_GIOP_VERSION_H */ |