summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-28 00:15:49 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-28 00:15:49 +0000
commit0b2aaaf4c19812f6bb60d8ad6f0673d02d92a7c8 (patch)
treeb594ad41b66cd937d9d108d16f13d8926bb66e50
parent21f78b1485918d4eda6f89520830b27170510ebe (diff)
downloadATCD-0b2aaaf4c19812f6bb60d8ad6f0673d02d92a7c8.tar.gz
Added #include <orb.idl> and scoped all TypeCode parameters with CORBA::.
-rw-r--r--TAO/orbsvcs/orbsvcs/CosPropertyService.idl4
-rw-r--r--TAO/orbsvcs/orbsvcs/CosTradingDynamic.idl7
-rw-r--r--TAO/orbsvcs/orbsvcs/CosTradingRepos.idl3
3 files changed, 9 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/CosPropertyService.idl b/TAO/orbsvcs/orbsvcs/CosPropertyService.idl
index 4f1d76df69c..1bba55334e7 100644
--- a/TAO/orbsvcs/orbsvcs/CosPropertyService.idl
+++ b/TAO/orbsvcs/orbsvcs/CosPropertyService.idl
@@ -22,6 +22,8 @@
#ifndef TAO_PROPERTY_IDL
#define TAO_PROPERTY_IDL
+#include <orb.idl>
+
#pragma prefix "omg.org"
module CosPropertyService
@@ -71,7 +73,7 @@ module CosPropertyService
typedef sequence<Property> Properties;
typedef sequence<PropertyDef> PropertyDefs;
typedef sequence<PropertyMode> PropertyModes;
- typedef sequence<TypeCode> PropertyTypes;
+ typedef sequence<CORBA::TypeCode> PropertyTypes;
interface PropertyNamesIterator;
interface PropertiesIterator;
diff --git a/TAO/orbsvcs/orbsvcs/CosTradingDynamic.idl b/TAO/orbsvcs/orbsvcs/CosTradingDynamic.idl
index 9ab95622883..27ffedbbf35 100644
--- a/TAO/orbsvcs/orbsvcs/CosTradingDynamic.idl
+++ b/TAO/orbsvcs/orbsvcs/CosTradingDynamic.idl
@@ -16,6 +16,7 @@
#ifndef TAO_TRADING_DYNAMIC_IDL
#define TAO_TRADING_DYNAMIC_IDL
+#include <orb.idl>
#include "CosTrading.idl"
#pragma prefix "omg.org"
@@ -27,21 +28,21 @@ module CosTradingDynamic
exception DPEvalFailure {
CosTrading::PropertyName name;
- TypeCode returned_type;
+ CORBA::TypeCode returned_type;
any extra_info;
};
interface DynamicPropEval
{
any evalDP (in CosTrading::PropertyName name,
- in TypeCode returned_type,
+ in CORBA::TypeCode returned_type,
in any extra_info)
raises (DPEvalFailure);
};
struct DynamicProp {
DynamicPropEval eval_if;
- TypeCode returned_type;
+ CORBA::TypeCode returned_type;
any extra_info;
};
}; /* end module CosTradingDynamic */
diff --git a/TAO/orbsvcs/orbsvcs/CosTradingRepos.idl b/TAO/orbsvcs/orbsvcs/CosTradingRepos.idl
index c3cf8b0dfab..0462030155e 100644
--- a/TAO/orbsvcs/orbsvcs/CosTradingRepos.idl
+++ b/TAO/orbsvcs/orbsvcs/CosTradingRepos.idl
@@ -16,6 +16,7 @@
#ifndef TAO_TRADING_REPOS_IDL
#define TAO_TRADING_REPOS_IDL
+#include <orb.idl>
#include "CosTrading.idl"
#pragma prefix "omg.org"
@@ -35,7 +36,7 @@ module CosTradingRepos
struct PropStruct
{
CosTrading::PropertyName name;
- TypeCode value_type;
+ CORBA::TypeCode value_type;
PropertyMode mode;
};
typedef sequence<PropStruct> PropStructSeq;