diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-02-19 01:04:51 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-02-19 01:04:51 +0000 |
commit | d0c5a3d81b44fbfeda73a8fb4e3e19fd0343539f (patch) | |
tree | aafa16e07deb1fcb7875742cfe5dcbaf543a0fae /TAO/TAO_IDL/include | |
parent | c8f42bb2f382b6f77cc7d6a65dc9414d19c46d97 (diff) | |
download | ATCD-d0c5a3d81b44fbfeda73a8fb4e3e19fd0343539f.tar.gz |
Option to suppress generation of tie classes and files.
Diffstat (limited to 'TAO/TAO_IDL/include')
-rw-r--r-- | TAO/TAO_IDL/include/idl_global.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/include/idl_global.h b/TAO/TAO_IDL/include/idl_global.h index 51603917a98..e19d77366d4 100644 --- a/TAO/TAO_IDL/include/idl_global.h +++ b/TAO/TAO_IDL/include/idl_global.h @@ -606,6 +606,12 @@ public: virtual idl_bool ami_call_back (void); // Return the flag. + virtual void gen_tie_classes (idl_bool value); + // Toggle the generation of tie classes and files. + + virtual idl_bool gen_tie_classes (void); + // Return the flag. + private: // Data UTL_ScopeStack *pd_scopes; // Store scopes stack @@ -763,6 +769,10 @@ private: // Flag to indicate whether the AMI Call back feature of the // Messaging specification should be enabled for the generated files // or not. + + idl_bool gen_tie_classes_; + // Flag to indicate whether we generate the tie classes and + // files or not. }; #endif //_IDL_IDL_GLOBAL_HH |