summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_Custom_Marshal
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-08-22 14:09:38 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-08-22 14:09:38 +0000
commit6f78709dd6ad770e668d94607f7800c688ac9ffc (patch)
tree2df83d24062b6e1179bb4f8c9c29356b6a2080c7 /TAO/orbsvcs/tests/EC_Custom_Marshal
parent72c1c1fce008f77c01f4b71d37467051c7955fbb (diff)
downloadATCD-6f78709dd6ad770e668d94607f7800c688ac9ffc.tar.gz
ChangeLogTag: Fri Aug 22 14:08:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs/tests/EC_Custom_Marshal')
-rw-r--r--TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Data.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Data.h b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Data.h
index b690100fbce..33218253383 100644
--- a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Data.h
+++ b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Data.h
@@ -13,6 +13,7 @@
#define ECM_DATA_H
#include "ace/Map_Manager.h"
+#include "ace/Null_Mutex.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
@@ -22,12 +23,12 @@
struct ECM_Data
{
- typedef ACE_Map_Manager<CORBA::ULong,CORBA::Double,ACE_Null_Mutex> Inventory;
// Yes, an STL type could be used here and yes, we could write
// generic algorithms for marshalling and demarshalling using
// iterators.
// But ACE (and TAO) must be ported to platforms whose C++ compilers
// will crash and burn when faced with an STL construct.
+ typedef ACE_Map_Manager<CORBA::ULong,CORBA::Double,ACE_Null_Mutex> Inventory;
CORBA::String_var description;
Inventory inventory;