summaryrefslogtreecommitdiff
path: root/TAO/tao/ORB_Table.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-16 21:19:02 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-16 21:19:02 +0000
commit40fdc8a404e75ab03b68cc62e9987cf208fd8c30 (patch)
tree37d9c4d3abe4aefd8a34ed797883dd2cd4862ca7 /TAO/tao/ORB_Table.h
parentc254b281f1b9a4ca19dd0c3ee73a0654a7718909 (diff)
downloadATCD-40fdc8a404e75ab03b68cc62e9987cf208fd8c30.tar.gz
This commit was manufactured by cvs2svn to create branchtypecode-overhaul
'typecode-overhaul'.
Diffstat (limited to 'TAO/tao/ORB_Table.h')
-rw-r--r--TAO/tao/ORB_Table.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/TAO/tao/ORB_Table.h b/TAO/tao/ORB_Table.h
index 97a37403fe2..1148b06fd3b 100644
--- a/TAO/tao/ORB_Table.h
+++ b/TAO/tao/ORB_Table.h
@@ -16,15 +16,17 @@
#define TAO_ORB_TABLE_H
#include /**/ "ace/pre.h"
-
-#include "tao/TAO_Export.h"
+#include "ace/Null_Mutex.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+#include "tao/corbafwd.h"
+
#include "ace/Hash_Map_Manager_T.h"
-#include "ace/Null_Mutex.h"
+
+#include "tao/TAO_Export.h"
// Forward declarations.
class TAO_ORB_Core;
@@ -85,14 +87,14 @@ public:
/// Set the ORB related to the orb_id as the default ORB and not the
/// ORB that is first binded.
void set_default (const char *orb_id);
-
+
/// Method the ORB invokes to specify that it doesnt want to be the
/// default ORB if there are more than one ORB registered.
void not_default (const char *orb_id);
- /// Accessor to the underlying table_
+ /// Accessor to the underlying table_
Table * table (void);
-
+
private:
/// Prevent copying
@@ -105,7 +107,7 @@ private:
void update_orbs();
/// Variable to check if the first ORB decides not to be the default
- bool first_orb_not_default_;
+ CORBA::Boolean first_orb_not_default_;
/// The implementation.
Table table_;