summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/be_global.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/be_global.h')
-rw-r--r--TAO/orbsvcs/IFR_Service/be_global.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/TAO/orbsvcs/IFR_Service/be_global.h b/TAO/orbsvcs/IFR_Service/be_global.h
index ad2b2bb5d21..6a0c17fccca 100644
--- a/TAO/orbsvcs/IFR_Service/be_global.h
+++ b/TAO/orbsvcs/IFR_Service/be_global.h
@@ -22,7 +22,6 @@
#include "TAO_IFR_BE_Export.h"
#include "tao/IFR_Client/IFR_BasicC.h"
-#include "idl_bool.h"
#include "tao/ORB.h"
#include "ace/Containers.h"
#include "ace/SString.h"
@@ -52,8 +51,8 @@ public:
// Data accessors.
- idl_bool removing (void) const;
- void removing (idl_bool value);
+ bool removing (void) const;
+ void removing (bool value);
CORBA::ORB_ptr orb (void) const;
void orb (CORBA::ORB_ptr orb);
@@ -74,11 +73,11 @@ public:
const char *filename (void) const;
void filename (char *fname);
- idl_bool enable_locking (void) const;
- void enable_locking (idl_bool value);
+ bool enable_locking (void) const;
+ void enable_locking (bool value);
- idl_bool do_included_files (void) const;
- void do_included_files (idl_bool val);
+ bool do_included_files (void) const;
+ void do_included_files (bool val);
ACE_CString orb_args (void) const;
void orb_args (const ACE_CString& args);
@@ -103,7 +102,7 @@ public:
// Create an AST node generator.
private:
- idl_bool removing_;
+ bool removing_;
// Are we removing IR objects from the repository?
CORBA::ORB_var orb_;
@@ -125,10 +124,10 @@ private:
char *filename_;
// Name of the IDL file we are processing.
- idl_bool enable_locking_;
+ bool enable_locking_;
// Option to lock at the IDL file level.
- idl_bool do_included_files_;
+ bool do_included_files_;
// Option to process included IDL files.
ACE_CString orb_args_;