diff options
Diffstat (limited to 'TAO/TAO_IDL/util/utl_global.cpp')
-rw-r--r-- | TAO/TAO_IDL/util/utl_global.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/util/utl_global.cpp b/TAO/TAO_IDL/util/utl_global.cpp index 692c90628b9..9306c9ce867 100644 --- a/TAO/TAO_IDL/util/utl_global.cpp +++ b/TAO/TAO_IDL/util/utl_global.cpp @@ -1309,6 +1309,18 @@ IDL_GlobalData::ciao_lem_file_names (void) return this->ciao_lem_file_names_; } +void +IDL_GlobalData::add_ciao_rti_ts_file_names (const char *s) +{ + this->ciao_rti_ts_file_names_.enqueue_tail (ACE::strnew (s)); +} + +ACE_Unbounded_Queue<char *> & +IDL_GlobalData::ciao_rti_ts_file_names (void) +{ + return this->ciao_rti_ts_file_names_; +} + ACE_Hash_Map_Manager<char *, char *, ACE_Null_Mutex> & IDL_GlobalData::file_prefixes (void) { |