summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-08-02 09:22:05 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-08-02 09:22:05 +0000
commit72f0ecd39755890fa1411a533fc1a1a72b3f5f21 (patch)
tree4d2919c3f551cd8e65b97868a7d2f7b7a5872a47 /TAO/TAO_IDL/be_include
parent07fcdc0de7922df4b42ab30a8aca6cfe1d643ae8 (diff)
downloadATCD-72f0ecd39755890fa1411a533fc1a1a72b3f5f21.tar.gz
Thu Aug 2 09:20:20 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* MPC/config/taobaseidldefaults.mpb: * TAO_IDL/be/be_global.cpp: * TAO_IDL/be/be_produce.cpp: * TAO_IDL/be/be_util.cpp: * TAO_IDL/be_include/be_global.h: * docs/compiler.html: Added -Sch to disable stub header generation, -Ssh to disable servant header
Diffstat (limited to 'TAO/TAO_IDL/be_include')
-rw-r--r--TAO/TAO_IDL/be_include/be_global.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be_include/be_global.h b/TAO/TAO_IDL/be_include/be_global.h
index b9b9c9331a3..100d7e36bc2 100644
--- a/TAO/TAO_IDL/be_include/be_global.h
+++ b/TAO/TAO_IDL/be_include/be_global.h
@@ -828,10 +828,18 @@ public:
bool gen_client_stub (void) const;
void gen_client_stub (bool val);
+ /// Accessors for the member gen_client_header_.
+ bool gen_client_header (void) const;
+ void gen_client_header (bool val);
+
/// Accessors for the member gen_server_skeleton_.
bool gen_server_skeleton (void) const;
void gen_server_skeleton (bool val);
+ /// Accessors for the member gen_server_header_.
+ bool gen_server_header (void) const;
+ void gen_server_header (bool val);
+
/// Accessors for the member gen_local_iface_anyops_.
bool gen_local_iface_anyops (void) const;
void gen_local_iface_anyops (bool val);
@@ -1199,9 +1207,17 @@ private:
bool gen_client_stub_;
/// True by default, but a command line option can turn this off so
+ /// that we don't generate a client header file
+ bool gen_client_header_;
+
+ /// True by default, but a command line option can turn this off so
/// that we don't generate a server skeleton file
bool gen_server_skeleton_;
+ /// True by default, but a command line option can turn this off so
+ /// that we don't generate a server header file
+ bool gen_server_header_;
+
/// True by default, can be turned off by a command line option
/// for regenerating internal ORB files.
bool gen_local_iface_anyops_;