summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_global.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_global.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_global.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/be_include/be_global.h b/TAO/TAO_IDL/be_include/be_global.h
index 560281e9ab0..919d04a6ffb 100644
--- a/TAO/TAO_IDL/be_include/be_global.h
+++ b/TAO/TAO_IDL/be_include/be_global.h
@@ -417,6 +417,12 @@ public:
/// Get text that opens a "versioned" namespace.
const char * versioning_begin (void) const;
+ /// Set include file for "versioned" namespace.
+ void versioning_include (const char* s);
+
+ /// Get include file for "versioned" namespace.
+ const char * versioning_include (void) const;
+
/// Get text that opens a "versioned" namespace for core TAO/orbsvcs
/// related code.
const char * core_versioning_begin (void) const;
@@ -963,12 +969,15 @@ private:
/// orbsvcs related code.
ACE_CString core_versioning_end_;
- /// Text that opens a "versioned" namepace.
+ /// Text that opens a "versioned" namespace.
ACE_CString versioning_begin_;
- /// Text that closes a "versioned" namepace.
+ /// Text that closes a "versioned" namespace.
ACE_CString versioning_end_;
+ /// Include for versioned namespace include
+ ACE_CString versioning_include_;
+
/// Client's header file name ending. Default is "C.h".
char* client_hdr_ending_;