blob: 2832903be82e934fd8040141fdb9b745532a39e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// -*- C++ -*-
//$Id$
///////////////////////////////////////////////////////////////
// TAO_GIOP_Message_Accept_Impl methods
//////////////////////////////////////////////////////////////
ACE_INLINE CORBA::Boolean
TAO_GIOP_Message_Accept_Impl::check_revision (CORBA::Octet incoming_major,
CORBA::Octet incoming_minor)
{
// Need a better way to do this. @@Bala
if (incoming_major > 1 ||
incoming_minor > 1)
return 0;
return 1;
}
|