summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-02-20 01:51:26 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-02-20 01:51:26 +0000
commit813d684a8a3c91e7c2d70a3965c71dc4d5a11fcc (patch)
tree4bc70d9b4c67b891c4a8301b1f85e7da5ba997a6
parentfc6475034d0fc015105e314e47fac077d3052c66 (diff)
downloadATCD-813d684a8a3c91e7c2d70a3965c71dc4d5a11fcc.tar.gz
Removed and is now in GIOP_Message_Loacte_Headers.h
-rw-r--r--TAO/tao/GIOP_Message_Headers.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/TAO/tao/GIOP_Message_Headers.h b/TAO/tao/GIOP_Message_Headers.h
deleted file mode 100644
index 9c9fbb3db0d..00000000000
--- a/TAO/tao/GIOP_Message_Headers.h
+++ /dev/null
@@ -1,77 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file GIOP_Message_Headers.h
- *
- * $Id$
- *
- * Some assorted GIOP structure mappings
- *
- *
- * @author Balachandran Natarajan <bala@cs.wustl.edu>
- */
-//=============================================================================
-
-
-#ifndef TAO_GIOP_MESSAGE_HEADERS_H
-#define TAO_GIOP_MESSAGE_HEADERS_H
-#include "ace/pre.h"
-
-#include "tao/Tagged_Profile.h"
-
-
-// @@ Bala: what goes in this file? All the message headers? A few of
-// @@ them? Only the Locate_Request header?!
-
-/**
- * @class TAO_GIOP_Locate_Request_Header
- *
- * @brief Location service support
- */
-class TAO_Export TAO_GIOP_Locate_Request_Header
-{
-public:
-
- /// Constructor
- TAO_GIOP_Locate_Request_Header (TAO_InputCDR &msg,
- TAO_ORB_Core *core);
-
- /// Set the id
- void request_id (CORBA::ULong id);
-
- /// Get the request id
- CORBA::ULong request_id (void);
-
- /// Get the object_key in read mode..
- const TAO_ObjectKey &object_key (void) const;
-
- /// Get the object_key in read/write mode..
- TAO_ObjectKey &object_key (void);
-
- /// Get the reference to the underlying profile
- TAO_Tagged_Profile &profile (void);
-
- /// Get the CDR stream for read/write
- TAO_InputCDR &incoming_stream (void);
-
-private:
- /// Request id
- CORBA::ULong request_id_;
-
- /// Profile info.
- TAO_Tagged_Profile profile_;
-
- /// Object Key
- TAO_ObjectKey object_key_;
-
- /// Incoming CDR stream
- TAO_InputCDR *incoming_;
-};
-
-#if defined (__ACE_INLINE__)
-# include "tao/GIOP_Message_Headers.i"
-#endif /* __ACE_INLINE__ */
-
-#include "ace/post.h"
-#endif /*TAO_GIOP_MESSAGE_HEADERS_H*/