summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-12-15 22:31:47 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-12-15 22:31:47 +0000
commit85ca431d56624675f8d05df596d12021eeb29fdf (patch)
treea42df2d129be181845937e0507821617b9537e75
parent6788c009e131d535a9526a5c40e0219334c90ef1 (diff)
downloadATCD-85ca431d56624675f8d05df596d12021eeb29fdf.tar.gz
This commit was manufactured by cvs2svn to create branch
'unlabeled-1.4.2'.
-rw-r--r--TAO/tao/GIOP_Message_Generator_Parser_Impl.inl13
1 files changed, 13 insertions, 0 deletions
diff --git a/TAO/tao/GIOP_Message_Generator_Parser_Impl.inl b/TAO/tao/GIOP_Message_Generator_Parser_Impl.inl
new file mode 100644
index 00000000000..18bb7936ffd
--- /dev/null
+++ b/TAO/tao/GIOP_Message_Generator_Parser_Impl.inl
@@ -0,0 +1,13 @@
+//$Id$
+
+ACE_INLINE CORBA::Boolean
+TAO_GIOP_Message_Generator_Parser_Impl::
+ check_revision (CORBA::Octet incoming_major,
+ CORBA::Octet incoming_minor)
+{
+ if (incoming_major > TAO_DEF_GIOP_MAJOR ||
+ incoming_minor > TAO_DEF_GIOP_MINOR)
+ return 0;
+
+ return 1;
+}