summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP_Message_Factory.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/GIOP_Message_Factory.i')
-rw-r--r--TAO/tao/GIOP_Message_Factory.i31
1 files changed, 0 insertions, 31 deletions
diff --git a/TAO/tao/GIOP_Message_Factory.i b/TAO/tao/GIOP_Message_Factory.i
deleted file mode 100644
index e9742fb7b00..00000000000
--- a/TAO/tao/GIOP_Message_Factory.i
+++ /dev/null
@@ -1,31 +0,0 @@
-//$Id$
-
-//
-// Utility routines for the accept states
-//
-
-ACE_INLINE int
-TAO_GIOP_Available_States::check_major (CORBA::Octet &major)
-{
- // When we have lots we need to move these definitions to the
- // GIOP_Accept_State.h file. But for now it is ok..
- if (major != TAO_DEF_GIOP_MAJOR)
- {
- cout << "Something wrong major"<<endl;
- return -1;
- }
- return 0;
-}
-
-ACE_INLINE int
-TAO_GIOP_Available_States::check_minor (CORBA::Octet &minor)
-{
- // When we have lots we need to move these definitions to the
- // GIOP_Accept_State.h file. But for now it is ok..
- if (minor > TAO_DEF_GIOP_MINOR)
- {
- cout << "Something wrong minor"<<endl;
- return -1;
- }
- return 0;
-}