blob: 18bb7936ffd069ed10f9bc79db28232f29e4bb37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}
|