summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-03-25 12:58:22 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-03-25 12:58:22 +0000
commitf83227db2234bb0d24563ac8ce04ef8c640db955 (patch)
tree93f5a48ce9a94e47444460d4f1a904724f37f72d
parentda8d284ed547e2d8766859e89c1ba03ceb56443a (diff)
downloadATCD-f83227db2234bb0d24563ac8ce04ef8c640db955.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/DynamicC.h2
-rw-r--r--TAO/tao/IOP_CodecC.h2
-rw-r--r--TAO/tao/TypeCode.cpp5
-rw-r--r--TAO/tao/TypeCode.h4
-rw-r--r--TAO/tao/append.cpp1
5 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/DynamicC.h b/TAO/tao/DynamicC.h
index d533cfccfa0..74726075f0d 100644
--- a/TAO/tao/DynamicC.h
+++ b/TAO/tao/DynamicC.h
@@ -43,7 +43,7 @@
#include "tao/TAO_Export.h"
#include "tao/ORB.h"
#include "tao/Environment.h"
-#include "tao/Typecode.h"
+#include "tao/TypeCode.h"
#include "tao/Sequence_T.h"
#include "tao/Seq_Var_T.h"
#include "tao/Seq_Out_T.h"
diff --git a/TAO/tao/IOP_CodecC.h b/TAO/tao/IOP_CodecC.h
index 518720d63e7..e896c1dc77d 100644
--- a/TAO/tao/IOP_CodecC.h
+++ b/TAO/tao/IOP_CodecC.h
@@ -45,7 +45,7 @@
#include "tao/SystemException.h"
#include "tao/Environment.h"
#include "tao/Object.h"
-#include "tao/Typecode.h"
+#include "tao/TypeCode.h"
#include "tao/Any.h"
#include "tao/Objref_VarOut_T.h"
#include "tao/VarOut_T.h"
diff --git a/TAO/tao/TypeCode.cpp b/TAO/tao/TypeCode.cpp
index 92e83d5c2bf..956278f7fbf 100644
--- a/TAO/tao/TypeCode.cpp
+++ b/TAO/tao/TypeCode.cpp
@@ -176,7 +176,7 @@ CORBA::TypeCode::concrete_base_type_i (ACE_ENV_SINGLE_ARG_DECL) const
bool
TAO::operator<< (TAO_OutputCDR & cdr,
- CORBA::TypeCode const * tc)
+ CORBA::TypeCode_ptr tc)
{
ACE_DECLARE_NEW_CORBA_ENV;
@@ -196,8 +196,7 @@ TAO::operator<< (TAO_OutputCDR & cdr,
bool
TAO::operator>> (TAO_InputCDR & cdr,
- CORBA::TypeCode *& tc);
-
+ CORBA::TypeCode_ptr & tc)
{
ACE_DECLARE_NEW_CORBA_ENV;
diff --git a/TAO/tao/TypeCode.h b/TAO/tao/TypeCode.h
index 68eb2f24c88..594e3b6619d 100644
--- a/TAO/tao/TypeCode.h
+++ b/TAO/tao/TypeCode.h
@@ -482,9 +482,9 @@ namespace CORBA
namespace TAO
{
extern TAO_Export bool operator<< (TAO_OutputCDR & cdr,
- CORBA::TypeCode const * x);
+ CORBA::TypeCode_ptr tc);
extern TAO_Export bool operator>> (TAO_InputCDR & cdr,
- CORBA::TypeCode *&x);
+ CORBA::TypeCode_ptr & tc);
/// Return the unaliased content @c TypeCode of the given
/// @c TypeCode.
diff --git a/TAO/tao/append.cpp b/TAO/tao/append.cpp
index 2ec1baef294..e315461546c 100644
--- a/TAO/tao/append.cpp
+++ b/TAO/tao/append.cpp
@@ -28,6 +28,7 @@
#include "tao/Any_Unknown_IDL_Type.h"
#include "tao/CDR.h"
#include "tao/SystemException.h"
+#include "tao/TypeCode_Constants.h"
#include "ace/Dynamic_Service.h"