summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/utl_identifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/utl_identifier.h')
-rw-r--r--TAO/TAO_IDL/include/utl_identifier.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/include/utl_identifier.h b/TAO/TAO_IDL/include/utl_identifier.h
index 57742738473..769256dde2d 100644
--- a/TAO/TAO_IDL/include/utl_identifier.h
+++ b/TAO/TAO_IDL/include/utl_identifier.h
@@ -68,7 +68,7 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
#define _UTL_IDENTIFIER_UTL_IDENTIFIER_HH
#include "TAO_IDL_FE_Export.h"
-
+#include "idl_bool.h"
#include "ace/iosfwd.h"
class TAO_IDL_FE_Export Identifier
@@ -91,19 +91,19 @@ public:
void replace_string (const char * s);
// Replace the underlying string and free the old one.
- bool compare (Identifier *other);
+ long compare (Identifier *other);
// Compare with other Identifier.
- bool case_compare (Identifier *other);
+ long case_compare (Identifier *other);
// Also check for case-only difference.
- bool case_compare_quiet (Identifier *other);
+ long case_compare_quiet (Identifier *other);
// Like the above but suppressing error or warning I/O
Identifier *copy (void);
// Create a deep copy.
- bool escaped (void) const;
+ idl_bool escaped (void) const;
// Accessor for the member.
virtual void dump (ACE_OSTREAM_TYPE &o);
@@ -117,7 +117,7 @@ private:
char *pv_string;
// Did the IDL string have a leading underscore?
- bool escaped_;
+ idl_bool escaped_;
};
#endif // _UTL_IDENTIFIER_UTL_IDENTIFIER_HH