summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP_Message_State.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/GIOP_Message_State.inl')
-rw-r--r--TAO/tao/GIOP_Message_State.inl33
1 files changed, 33 insertions, 0 deletions
diff --git a/TAO/tao/GIOP_Message_State.inl b/TAO/tao/GIOP_Message_State.inl
new file mode 100644
index 00000000000..a2ec5fb27e9
--- /dev/null
+++ b/TAO/tao/GIOP_Message_State.inl
@@ -0,0 +1,33 @@
+// -*- C++ -*-
+
+//$Id$
+// ****************************************************************
+// @@ Bala: we use the stars to separate classes in ACE+TAO
+
+//
+// Inlined methods for TAO_GIOP_Message_State
+//
+#if 0
+ACE_INLINE int
+TAO_GIOP_Message_State::message_fragmented (void)
+{
+ if (this->more_fragments)
+ return 1;
+
+ return 0;
+}
+
+ACE_INLINE void
+TAO_GIOP_Message_State::reset (int /*reset_contents*/)
+{
+ this->message_size = 0;
+ this->more_fragments = 0;
+}
+
+ACE_INLINE CORBA::Boolean
+TAO_GIOP_Message_State::header_received (void) const
+{
+ return this->message_size != 0;
+}
+
+#endif