summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_helper.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-03-29 12:25:33 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-03-29 12:25:33 +0000
commit089d5dc98c5b8fa0af29ee997e6fd01c2d5dd5a0 (patch)
treed5be49e225ae3928d7605470e0f662e6dd9eab1a /TAO/TAO_IDL/be_include/be_helper.h
parent754ae6d6a8f14b0a8ad8fb4cc0e5ddf0d57e35b9 (diff)
downloadATCD-089d5dc98c5b8fa0af29ee997e6fd01c2d5dd5a0.tar.gz
Tue Mar 29 12:24:55 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO_IDL/be_include/be_component.h: * TAO_IDL/be_include/be_eventtype.h: * TAO_IDL/be_include/be_extended_port.h: * TAO_IDL/be_include/be_helper.h: * TAO_IDL/be_include/be_identifier_helper.h: * TAO_IDL/be_include/be_interface.h: * TAO_IDL/be_include/be_mirror_port.h: * TAO_IDL/be_include/be_porttype.h: * TAO_IDL/be_include/be_root.h: * TAO_IDL/be_include/be_template_module.h: * TAO_IDL/be_include/be_valuetype.h: * TAO_IDL/be_include/be_visitor_attribute/ccm_init.h: * TAO_IDL/be_include/be_visitor_attribute/set_from_extracted.h: * TAO_IDL/be_include/be_visitor_component/component_ami_rh_ex_base.h: * TAO_IDL/be_include/be_visitor_operation/argument_marshal.h: * TAO_IDL/include/ast_visitor_tmpl_module_ref.h: * TAO_IDL/include/fe_private.h: Doxygen changes
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_helper.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_helper.h26
1 files changed, 12 insertions, 14 deletions
diff --git a/TAO/TAO_IDL/be_include/be_helper.h b/TAO/TAO_IDL/be_include/be_helper.h
index c9da90e7d32..fa1938ef12a 100644
--- a/TAO/TAO_IDL/be_include/be_helper.h
+++ b/TAO/TAO_IDL/be_include/be_helper.h
@@ -36,29 +36,27 @@ struct TAO_NL_2
TAO_NL_2 (void);
};
+/**
+ * Operates like a manipulator, increasing the indentation level.
+ *
+ * Increase the indentation level, if the "do_now" parameter is
+ * not zero then the <indent> method is called on the stream.
+ */
struct TAO_INDENT
{
- // = TITLE
- // Operates like a manipulator, increasing the indentation level.
- //
- // = DESCRIPTION
- // Increase the indentation level, if the "do_now" parameter is
- // not zero then the <indent> method is called on the stream.
- //
TAO_INDENT (int do_now = 0);
const int do_now_;
};
+/**
+ * Operates like a manipulator, decreasing the indentation level.
+ *
+ * Decrease the indentation level, if the "do_now" parameter is
+ * not zero then the <indent> method is called on the stream.
+ */
struct TAO_UNINDENT
{
- // = TITLE
- // Operates like a manipulator, decreasing the indentation level.
- //
- // = DESCRIPTION
- // Decrease the indentation level, if the "do_now" parameter is
- // not zero then the <indent> method is called on the stream.
- //
TAO_UNINDENT (int do_now = 0);
const int do_now_;