summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation.h
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-14 18:41:29 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-14 18:41:29 +0000
commit6550978728c42017fcf56c43155c7d51fcae9ad3 (patch)
tree32e09be1c5b305d98f4cd2c3ec6837f0921ac045 /TAO/tao/Invocation.h
parent4666e359e7e27a898e49f06cff3ffb13722ec70e (diff)
downloadATCD-6550978728c42017fcf56c43155c7d51fcae9ad3.tar.gz
ChangeLogTag: Tue Nov 14 12:36:31 2000 Jeff Parsons <parsons@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Invocation.h')
-rw-r--r--TAO/tao/Invocation.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/TAO/tao/Invocation.h b/TAO/tao/Invocation.h
index 09ba39b1681..213091a8ed0 100644
--- a/TAO/tao/Invocation.h
+++ b/TAO/tao/Invocation.h
@@ -82,6 +82,10 @@ class TAO_Export TAO_GIOP_Invocation
friend class TAO_Client_Priority_Policy_Selector;
public:
+ TAO_GIOP_Invocation (void);
+ // Default constructor. This should never get called, it is here
+ // only to appease older versions of g++.
+
TAO_GIOP_Invocation (TAO_Stub *data,
const char *operation,
CORBA::ULong opname_len,
@@ -165,7 +169,7 @@ protected:
TAO_Stub *stub_;
// The object on which this invocation is going.
- char buffer [ACE_CDR::DEFAULT_BUFSIZE];
+ char buffer_ [ACE_CDR::DEFAULT_BUFSIZE];
// Buffer used for both the output and input CDR streams, this is
// "safe" because we only one of the streams at a time.
@@ -242,6 +246,10 @@ class TAO_Export TAO_GIOP_Synch_Invocation : public TAO_GIOP_Invocation
// TAO_GIOP_Oneway_Invocation.
//
public:
+ TAO_GIOP_Synch_Invocation (void);
+ // Default constructor. This should never get called, it is here
+ // only to appease older versions of g++.
+
TAO_GIOP_Synch_Invocation (TAO_Stub *stub,
const char *operation,
CORBA::ULong opname_len,