diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-09 14:59:53 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-09 14:59:53 +0100 |
commit | f08a54e04d9eb26b402076b961fb5122ec1bbc3d (patch) | |
tree | e6c7cac74238a53dfd7475180285fccb86cb63a4 /TAO | |
parent | c7c7a9dd9b8cd5cfc699c3c8b5f682bba5423a79 (diff) | |
download | ATCD-f08a54e04d9eb26b402076b961fb5122ec1bbc3d.tar.gz |
Remove redundant void arg
Diffstat (limited to 'TAO')
418 files changed, 1340 insertions, 1340 deletions
diff --git a/TAO/TAO_IDL/be_include/be_argument.h b/TAO/TAO_IDL/be_include/be_argument.h index d51ffece6c6..cc5c2ef4bef 100644 --- a/TAO/TAO_IDL/be_include/be_argument.h +++ b/TAO/TAO_IDL/be_include/be_argument.h @@ -32,7 +32,7 @@ public: virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif diff --git a/TAO/TAO_IDL/be_include/be_array.h b/TAO/TAO_IDL/be_include/be_array.h index 75082a5c844..d021e5125be 100644 --- a/TAO/TAO_IDL/be_include/be_array.h +++ b/TAO/TAO_IDL/be_include/be_array.h @@ -31,7 +31,7 @@ public: bool local, bool abstract); - ~be_array (void); + ~be_array (); /// Generate dimensions. If slice == 1, generate dimensions for the slice /// definition. @@ -50,13 +50,13 @@ public: virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); protected: /// Create a name for us. - virtual int create_name (void); + virtual int create_name (); - virtual void compute_tc_name (void); + virtual void compute_tc_name (); }; #endif diff --git a/TAO/TAO_IDL/be_include/be_attribute.h b/TAO/TAO_IDL/be_include/be_attribute.h index fbbcae1ad5a..40f1ccf330a 100644 --- a/TAO/TAO_IDL/be_include/be_attribute.h +++ b/TAO/TAO_IDL/be_include/be_attribute.h @@ -31,13 +31,13 @@ public: bool abstract); // Non-virtual override of frontend method. - be_type *field_type (void) const; + be_type *field_type () const; // Visiting. virtual int accept (be_visitor *visitor); /// Cleanup. - virtual void destroy (void); + virtual void destroy (); /// Sets the original attribute from which this one was created, /// applies only to implied IDL. diff --git a/TAO/TAO_IDL/be_include/be_codegen.h b/TAO/TAO_IDL/be_include/be_codegen.h index abfa4b7cb1d..1369ca69e02 100644 --- a/TAO/TAO_IDL/be_include/be_codegen.h +++ b/TAO/TAO_IDL/be_include/be_codegen.h @@ -198,10 +198,10 @@ public: }; /// Constructor - TAO_CodeGen (void); + TAO_CodeGen (); /// Destructor - ~TAO_CodeGen (void); + ~TAO_CodeGen (); /// Set the client header stream. int start_client_header (const char *fname); @@ -249,16 +249,16 @@ public: /// Generate code at the end such as the <<= and >>= operators along /// with the ending #endif statement. - int end_client_header (void); + int end_client_header (); /// Generate necessary code at end of client inline file. - void end_client_inline (void); + void end_client_inline (); /// Generate necessary code at end of client stub file. - void end_client_stubs (void); + void end_client_stubs (); /// Put a last #endif in the server header. - int end_server_header (void); + int end_server_header (); /// Put a last #endif in the server header. int end_implementation_header (const char *fname); @@ -267,102 +267,102 @@ public: int end_implementation_skeleton (const char *fname); /// Put a last #endif in the server template header. - int end_server_template_header (void); + int end_server_template_header (); /// Put a last #endif in the server skeletons. - int end_server_template_skeletons (void); + int end_server_template_skeletons (); /// Put a last #endif in the server skeletons. - int end_server_skeletons (void); + int end_server_skeletons (); /// Put a last #endif in the anyop header. - int end_anyop_header (void); + int end_anyop_header (); /// Make sure we end with a newline. - int end_anyop_source (void); - - int end_ciao_svnt_header (void); - int end_ciao_svnt_source (void); - int end_ciao_svnt_template_header (void); - int end_ciao_svnt_template_source (void); - int end_ciao_exec_header (void); - int end_ciao_exec_source (void); - int end_ciao_exec_idl (void); - int end_ciao_conn_header (void); - int end_ciao_conn_source (void); - int end_ciao_ami_conn_idl (void); + int end_anyop_source (); + + int end_ciao_svnt_header (); + int end_ciao_svnt_source (); + int end_ciao_svnt_template_header (); + int end_ciao_svnt_template_source (); + int end_ciao_exec_header (); + int end_ciao_exec_source (); + int end_ciao_exec_idl (); + int end_ciao_conn_header (); + int end_ciao_conn_source (); + int end_ciao_ami_conn_idl (); /// Get the client header stream. - TAO_OutStream *client_header (void); + TAO_OutStream *client_header (); /// Get the client stubs stream. - TAO_OutStream *client_stubs (void); + TAO_OutStream *client_stubs (); /// Get the client inline stream. - TAO_OutStream *client_inline (void); + TAO_OutStream *client_inline (); /// get the server header stream. - TAO_OutStream *server_header (void); + TAO_OutStream *server_header (); /// Get the implementation header stream. - TAO_OutStream *implementation_header (void); + TAO_OutStream *implementation_header (); /// Get the implementation skeleton stream. - TAO_OutStream *implementation_skeleton (void); + TAO_OutStream *implementation_skeleton (); /// Get the server header template stream. - TAO_OutStream *server_template_header (void); + TAO_OutStream *server_template_header (); /// Get the server skeletons stream. - TAO_OutStream *server_skeletons (void); + TAO_OutStream *server_skeletons (); /// Get the server template skeletons stream. - TAO_OutStream *server_template_skeletons (void); + TAO_OutStream *server_template_skeletons (); /// Get the server template inline stream. - TAO_OutStream *server_template_inline (void); + TAO_OutStream *server_template_inline (); /// Get the anyop header stream. - TAO_OutStream *anyop_header (void); + TAO_OutStream *anyop_header (); /// Get the anyop source stream. - TAO_OutStream *anyop_source (void); + TAO_OutStream *anyop_source (); /// Get the CIAO servant header stream. - TAO_OutStream *ciao_svnt_header (void); + TAO_OutStream *ciao_svnt_header (); /// Get the CIAO servant source stream. - TAO_OutStream *ciao_svnt_source (void); + TAO_OutStream *ciao_svnt_source (); /// Get the CIAO template servant header stream. - TAO_OutStream *ciao_svnt_template_header (void); + TAO_OutStream *ciao_svnt_template_header (); /// Get the CIAO template servant source stream. - TAO_OutStream *ciao_svnt_template_source (void); + TAO_OutStream *ciao_svnt_template_source (); /// Get the CIAO executor impl header stream. - TAO_OutStream *ciao_exec_header (void); + TAO_OutStream *ciao_exec_header (); /// Get the CIAO executor impl source stream. - TAO_OutStream *ciao_exec_source (void); + TAO_OutStream *ciao_exec_source (); /// Get the CIAO executor IDL source stream. - TAO_OutStream *ciao_exec_idl (void); + TAO_OutStream *ciao_exec_idl (); /// Get the CIAO connector impl header stream. - TAO_OutStream *ciao_conn_header (void); + TAO_OutStream *ciao_conn_header (); /// Get the CIAO connector impl source stream. - TAO_OutStream *ciao_conn_source (void); + TAO_OutStream *ciao_conn_source (); /// Get the CIAO AMI connector IDL stream. - TAO_OutStream *ciao_ami_conn_idl (void); + TAO_OutStream *ciao_ami_conn_idl (); /// Set the gperf input file stream. void gperf_input_stream (TAO_OutStream *gperf_input); /// Retrieve the gperf input stream being used. - TAO_OutStream *gperf_input_stream (void); + TAO_OutStream *gperf_input_stream (); /// Set the gperf input file name. void gperf_input_filename (char *filename); @@ -373,7 +373,7 @@ public: * program. This is needed coz I do ACE_OS::open on this when I need * ACE_HANDLE for the file instead FILE*. */ - char *gperf_input_filename (void); + char *gperf_input_filename (); /// Convert input string to all one case. const char *upcase (const char *str); @@ -383,7 +383,7 @@ public: void gen_ident_string (TAO_OutStream *stream) const; /// Generates the export files selected on the command line. - void gen_export_files (void); + void gen_export_files (); /// Generate file include, with optional empty comment to /// short-circuit DOxygen. @@ -392,7 +392,7 @@ public: bool add_comment = false); /// Cleanup. - void destroy (void); + void destroy (); private: void gen_ifndef_string (const char *fname, @@ -401,13 +401,13 @@ private: const char *suffix); /// Utility methods for generating file includes. - void gen_stub_hdr_includes (void); - void gen_stub_src_includes (void); - void gen_skel_hdr_includes (void); - void gen_skel_src_includes (void); - void gen_seq_file_includes (void); + void gen_stub_hdr_includes (); + void gen_stub_src_includes (); + void gen_skel_hdr_includes (); + void gen_skel_src_includes (); + void gen_seq_file_includes (); void gen_any_file_includes (TAO_OutStream * stream) ; - void gen_var_file_includes (void); + void gen_var_file_includes (); void gen_stub_arg_file_includes (TAO_OutStream * stream); void gen_skel_arg_file_includes (TAO_OutStream * stream); void gen_cond_file_include (bool condition_green, @@ -419,12 +419,12 @@ private: void gen_svnt_hdr_includes (TAO_OutStream *stream); void gen_svnt_src_includes (TAO_OutStream *stream); void gen_svnt_tmpl_hdr_includes (TAO_OutStream *stream); - void gen_exec_hdr_includes (void); - void gen_exec_src_includes (void); - void gen_exec_idl_includes (void); - void gen_conn_hdr_includes (void); - void gen_conn_src_includes (void); - void gen_ami_conn_idl_includes (void); + void gen_exec_hdr_includes (); + void gen_exec_src_includes (); + void gen_exec_idl_includes (); + void gen_conn_hdr_includes (); + void gen_conn_src_includes (); + void gen_ami_conn_idl_includes (); bool is_system_file (const char * idl_name) const; diff --git a/TAO/TAO_IDL/be_include/be_component.h b/TAO/TAO_IDL/be_include/be_component.h index 94e7ec69dac..09766163811 100644 --- a/TAO/TAO_IDL/be_include/be_component.h +++ b/TAO/TAO_IDL/be_include/be_component.h @@ -33,17 +33,17 @@ public: AST_Interface **supports_flat, long n_supports_flat); - ~be_component (void); + ~be_component (); /// Override of the AST method to eliminate narrowing of /// the return value. Non-virtual. - be_component *base_component (void) const; + be_component *base_component () const; /// Catch BE-specific members before delegating to the base class. virtual void redefine (AST_Interface *from); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); /// Visiting. virtual int accept (be_visitor *visitor); @@ -53,14 +53,14 @@ public: AST_Structure *be_add_structure (AST_Structure *t); AST_Typedef *be_add_typedef (AST_Typedef *t); - ACE_CDR::ULong n_provides (void) const; - ACE_CDR::ULong n_remote_provides (void) const; - ACE_CDR::ULong n_uses (void) const; - ACE_CDR::ULong n_remote_uses (void) const; - bool has_uses_multiple (void) const; - ACE_CDR::ULong n_publishes (void) const; - ACE_CDR::ULong n_consumes (void) const; - ACE_CDR::ULong n_emits (void) const; + ACE_CDR::ULong n_provides () const; + ACE_CDR::ULong n_remote_provides () const; + ACE_CDR::ULong n_uses () const; + ACE_CDR::ULong n_remote_uses () const; + bool has_uses_multiple () const; + ACE_CDR::ULong n_publishes () const; + ACE_CDR::ULong n_consumes () const; + ACE_CDR::ULong n_emits () const; /// Update the has_* members. void scan (UTL_Scope *s); diff --git a/TAO/TAO_IDL/be_include/be_component_fwd.h b/TAO/TAO_IDL/be_include/be_component_fwd.h index 7ba68aee0ae..01ef8cc5c6c 100644 --- a/TAO/TAO_IDL/be_include/be_component_fwd.h +++ b/TAO/TAO_IDL/be_include/be_component_fwd.h @@ -29,10 +29,10 @@ public: be_component_fwd (AST_Interface *dummy, UTL_ScopedName *n); - virtual ~be_component_fwd (void); + virtual ~be_component_fwd (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor* visitor); diff --git a/TAO/TAO_IDL/be_include/be_connector.h b/TAO/TAO_IDL/be_include/be_connector.h index 00d945e6708..da35bc73d82 100644 --- a/TAO/TAO_IDL/be_include/be_connector.h +++ b/TAO/TAO_IDL/be_include/be_connector.h @@ -13,19 +13,19 @@ public: be_connector (UTL_ScopedName *n, AST_Connector *base_connector); - virtual ~be_connector (void); + virtual ~be_connector (); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); /// Visiting. virtual int accept (be_visitor *visitor); - bool dds_connector (void); - bool ami_connector (void); + bool dds_connector (); + bool ami_connector (); private: - void check_ancestors (void); + void check_ancestors (); private: bool dds_connector_; diff --git a/TAO/TAO_IDL/be_include/be_constant.h b/TAO/TAO_IDL/be_include/be_constant.h index 6b460d8289e..27f307b3813 100644 --- a/TAO/TAO_IDL/be_include/be_constant.h +++ b/TAO/TAO_IDL/be_include/be_constant.h @@ -32,7 +32,7 @@ public: virtual int accept (be_visitor *visitor); //Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif // if !defined diff --git a/TAO/TAO_IDL/be_include/be_consumes.h b/TAO/TAO_IDL/be_include/be_consumes.h index a71dd3ea407..941d0381a08 100644 --- a/TAO/TAO_IDL/be_include/be_consumes.h +++ b/TAO/TAO_IDL/be_include/be_consumes.h @@ -16,16 +16,16 @@ public: be_consumes (UTL_ScopedName *n, AST_Type *consumes_type); - virtual ~be_consumes (void); + virtual ~be_consumes (); // Non-virtual override of frontend method. - be_eventtype *consumes_type (void) const; + be_eventtype *consumes_type () const; // Visiting. virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif // BE_CONSUMES_H diff --git a/TAO/TAO_IDL/be_include/be_decl.h b/TAO/TAO_IDL/be_include/be_decl.h index abf5b388052..1ae61b79451 100644 --- a/TAO/TAO_IDL/be_include/be_decl.h +++ b/TAO/TAO_IDL/be_include/be_decl.h @@ -34,7 +34,7 @@ public: be_decl (AST_Decl::NodeType type, UTL_ScopedName *n); - ~be_decl (void); + ~be_decl (); // Methods used by the interface type strategy. /// Both the arguments should be non-null!!!. Applies prefix and @@ -52,63 +52,63 @@ public: // End of Methods use by the interface type strategy. /// Return the scope created by this node (if one exists). - virtual be_scope *scope (void); + virtual be_scope *scope (); // Visiting virtual int accept (be_visitor *visitor); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); /// Temporarily set this node's is_local_ flag. void set_local (bool val); // Boolean methods to test if code was already generated. - bool cli_hdr_gen (void); - bool cli_stub_gen (void); - bool cli_inline_gen (void); - bool srv_hdr_gen (void); - bool impl_hdr_gen (void); - bool srv_skel_gen (void); - bool impl_skel_gen (void); - bool srv_inline_gen (void); - bool tie_skel_gen (void); - bool cli_hdr_any_op_gen (void); - bool cli_stub_any_op_gen (void); - bool cli_hdr_cdr_op_gen (void); - bool cli_stub_cdr_op_gen (void); - bool cli_inline_cdr_op_gen (void); - bool cli_inline_cdr_decl_gen (void); - bool cli_traits_gen (void); - bool cli_arg_traits_gen (void); - bool srv_arg_traits_gen (void); - bool srv_sarg_traits_gen (void); - bool cli_pragma_inst_gen (void); - bool cli_inarg_tmpl_class_gen (void); - bool cli_inarg_pragma_inst_gen (void); - bool cli_inoutarg_tmpl_class_gen (void); - bool cli_inoutarg_pragma_inst_gen (void); - bool cli_outarg_tmpl_class_gen (void); - bool cli_outarg_pragma_inst_gen (void); - bool cli_retarg_tmpl_class_gen (void); - bool cli_retarg_pragma_inst_gen (void); - bool srv_tmpl_class_gen (void); - bool srv_pragma_inst_gen (void); - bool srv_inarg_tmpl_class_gen (void); - bool srv_inarg_pragma_inst_gen (void); - bool srv_inoutarg_tmpl_class_gen (void); - bool srv_inoutarg_pragma_inst_gen (void); - bool srv_outarg_tmpl_class_gen (void); - bool srv_outarg_pragma_inst_gen (void); - bool srv_retarg_tmpl_class_gen (void); - bool srv_retarg_pragma_inst_gen (void); - bool ccm_pre_proc_gen (void); - bool ex_idl_facet_gen (void); - bool svnt_hdr_facet_gen (void); - bool svnt_src_facet_gen (void); - bool exec_hdr_facet_gen (void); - bool exec_src_facet_gen (void); - bool ami4ccm_ex_idl_gen (void); + bool cli_hdr_gen (); + bool cli_stub_gen (); + bool cli_inline_gen (); + bool srv_hdr_gen (); + bool impl_hdr_gen (); + bool srv_skel_gen (); + bool impl_skel_gen (); + bool srv_inline_gen (); + bool tie_skel_gen (); + bool cli_hdr_any_op_gen (); + bool cli_stub_any_op_gen (); + bool cli_hdr_cdr_op_gen (); + bool cli_stub_cdr_op_gen (); + bool cli_inline_cdr_op_gen (); + bool cli_inline_cdr_decl_gen (); + bool cli_traits_gen (); + bool cli_arg_traits_gen (); + bool srv_arg_traits_gen (); + bool srv_sarg_traits_gen (); + bool cli_pragma_inst_gen (); + bool cli_inarg_tmpl_class_gen (); + bool cli_inarg_pragma_inst_gen (); + bool cli_inoutarg_tmpl_class_gen (); + bool cli_inoutarg_pragma_inst_gen (); + bool cli_outarg_tmpl_class_gen (); + bool cli_outarg_pragma_inst_gen (); + bool cli_retarg_tmpl_class_gen (); + bool cli_retarg_pragma_inst_gen (); + bool srv_tmpl_class_gen (); + bool srv_pragma_inst_gen (); + bool srv_inarg_tmpl_class_gen (); + bool srv_inarg_pragma_inst_gen (); + bool srv_inoutarg_tmpl_class_gen (); + bool srv_inoutarg_pragma_inst_gen (); + bool srv_outarg_tmpl_class_gen (); + bool srv_outarg_pragma_inst_gen (); + bool srv_retarg_tmpl_class_gen (); + bool srv_retarg_pragma_inst_gen (); + bool ccm_pre_proc_gen (); + bool ex_idl_facet_gen (); + bool svnt_hdr_facet_gen (); + bool svnt_src_facet_gen (); + bool exec_hdr_facet_gen (); + bool exec_src_facet_gen (); + bool ami4ccm_ex_idl_gen (); // Set the flag indicating that code generation is done. void cli_hdr_gen (bool); diff --git a/TAO/TAO_IDL/be_include/be_emits.h b/TAO/TAO_IDL/be_include/be_emits.h index 2faf72315b8..813b0aa303a 100644 --- a/TAO/TAO_IDL/be_include/be_emits.h +++ b/TAO/TAO_IDL/be_include/be_emits.h @@ -16,16 +16,16 @@ public: be_emits (UTL_ScopedName *n, AST_Type *emits_type); - virtual ~be_emits (void); + virtual ~be_emits (); // Non-virtual override of frontend method. - be_eventtype *emits_type (void) const; + be_eventtype *emits_type () const; // Visiting. virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif // BE_EMITS_H diff --git a/TAO/TAO_IDL/be_include/be_enum.h b/TAO/TAO_IDL/be_include/be_enum.h index 0631f7d88d5..5154d85f2a1 100644 --- a/TAO/TAO_IDL/be_include/be_enum.h +++ b/TAO/TAO_IDL/be_include/be_enum.h @@ -35,7 +35,7 @@ public: bool use_underscore); /// Cleanup method. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_enum_val.h b/TAO/TAO_IDL/be_include/be_enum_val.h index 82c194333a1..78959570fea 100644 --- a/TAO/TAO_IDL/be_include/be_enum_val.h +++ b/TAO/TAO_IDL/be_include/be_enum_val.h @@ -31,7 +31,7 @@ public: virtual int accept (be_visitor *visitor); //Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif diff --git a/TAO/TAO_IDL/be_include/be_eventtype.h b/TAO/TAO_IDL/be_include/be_eventtype.h index a8817c1ee3b..7b5e5fcfc39 100644 --- a/TAO/TAO_IDL/be_include/be_eventtype.h +++ b/TAO/TAO_IDL/be_include/be_eventtype.h @@ -37,13 +37,13 @@ public: bool truncatable, bool custom); - ~be_eventtype (void); + ~be_eventtype (); // Visiting. virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif // if !defined diff --git a/TAO/TAO_IDL/be_include/be_eventtype_fwd.h b/TAO/TAO_IDL/be_include/be_eventtype_fwd.h index f56dd68a3f9..3ee3c770bc1 100644 --- a/TAO/TAO_IDL/be_include/be_eventtype_fwd.h +++ b/TAO/TAO_IDL/be_include/be_eventtype_fwd.h @@ -29,13 +29,13 @@ public: be_eventtype_fwd (AST_Interface *dummy, UTL_ScopedName *n); - virtual ~be_eventtype_fwd (void); + virtual ~be_eventtype_fwd (); // Visiting. virtual int accept (be_visitor* visitor); // Cleanup - virtual void destroy (void); + virtual void destroy (); }; #endif // if !defined diff --git a/TAO/TAO_IDL/be_include/be_exception.h b/TAO/TAO_IDL/be_include/be_exception.h index 47a829b15ee..39d42cea0d7 100644 --- a/TAO/TAO_IDL/be_include/be_exception.h +++ b/TAO/TAO_IDL/be_include/be_exception.h @@ -16,7 +16,7 @@ public: bool abstract); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_extended_port.h b/TAO/TAO_IDL/be_include/be_extended_port.h index bb918ad5855..992549a47ae 100644 --- a/TAO/TAO_IDL/be_include/be_extended_port.h +++ b/TAO/TAO_IDL/be_include/be_extended_port.h @@ -32,11 +32,11 @@ public: UTL_ScopedName *n, AST_PortType *porttype_ref); - virtual ~be_extended_port (void); + virtual ~be_extended_port (); - be_porttype *port_type (void) const; + be_porttype *port_type () const; - virtual void destroy (void); + virtual void destroy (); virtual int accept (be_visitor *visitor); }; diff --git a/TAO/TAO_IDL/be_include/be_extern.h b/TAO/TAO_IDL/be_include/be_extern.h index b6bb946bb8e..444fb4674ce 100644 --- a/TAO/TAO_IDL/be_include/be_extern.h +++ b/TAO/TAO_IDL/be_include/be_extern.h @@ -73,9 +73,9 @@ extern TAO_IDL_BE_Export BE_GlobalData *be_global; extern TAO_IDL_BE_Export int BE_init (int &, ACE_TCHAR*[]); extern TAO_IDL_BE_Export void BE_post_init (char *[], long); -extern TAO_IDL_BE_Export void BE_version (void); -extern TAO_IDL_BE_Export void BE_produce (void); -extern TAO_IDL_BE_Export void BE_cleanup (void); -extern TAO_IDL_BE_Export void BE_abort (void); +extern TAO_IDL_BE_Export void BE_version (); +extern TAO_IDL_BE_Export void BE_produce (); +extern TAO_IDL_BE_Export void BE_cleanup (); +extern TAO_IDL_BE_Export void BE_abort (); #endif // _BE_EXTERN_BE_EXTERN_HH diff --git a/TAO/TAO_IDL/be_include/be_factory.h b/TAO/TAO_IDL/be_include/be_factory.h index fcea3e23ecc..5b9c3b4ac58 100644 --- a/TAO/TAO_IDL/be_include/be_factory.h +++ b/TAO/TAO_IDL/be_include/be_factory.h @@ -30,10 +30,10 @@ class be_factory : public virtual AST_Factory, public: be_factory (UTL_ScopedName *n); - ~be_factory (void); + ~be_factory (); /// Cleanup method. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_field.h b/TAO/TAO_IDL/be_include/be_field.h index 523c5db704a..0f61138f6d0 100644 --- a/TAO/TAO_IDL/be_include/be_field.h +++ b/TAO/TAO_IDL/be_include/be_field.h @@ -29,7 +29,7 @@ public: Visibility vis = vis_NA); // Non-virtual override of frontend method. - be_type *field_type (void) const; + be_type *field_type () const; // Generate debugging ostream operator for members. void gen_member_ostream_operator (TAO_OutStream *os, @@ -38,14 +38,14 @@ public: bool accessor = false); // Accessors for the member. - bool port_name_prefixed (void) const; + bool port_name_prefixed () const; void port_name_prefixed (bool val); // Visiting. virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); private: // If the name of a provides or uses node has already been diff --git a/TAO/TAO_IDL/be_include/be_finder.h b/TAO/TAO_IDL/be_include/be_finder.h index 65fc54c8a44..d6f7208aec6 100644 --- a/TAO/TAO_IDL/be_include/be_finder.h +++ b/TAO/TAO_IDL/be_include/be_finder.h @@ -24,10 +24,10 @@ class be_finder : public virtual AST_Finder, public: be_finder (UTL_ScopedName *n); - ~be_finder (void); + ~be_finder (); /// Cleanup method. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_global.h b/TAO/TAO_IDL/be_include/be_global.h index 5a7a97ad9b9..01dfa862b74 100644 --- a/TAO/TAO_IDL/be_include/be_global.h +++ b/TAO/TAO_IDL/be_include/be_global.h @@ -55,14 +55,14 @@ public: COREDX }; - BE_GlobalData (void); - ~BE_GlobalData (void); + BE_GlobalData (); + ~BE_GlobalData (); // To switch between changing or non-changing standard include // files (e.g. tao/corba.h) so that #include statements can be // generated with ""s or <>s respectively. void changing_standard_include_files (size_t changing); - size_t changing_standard_include_files (void); + size_t changing_standard_include_files (); // Helper functions that generate the file names for the C++ mapping // generated code. @@ -72,7 +72,7 @@ public: static const char *be_get_client_hdr_fname ( bool base_name_only = false); - static const char *be_get_client_stub_fname (void); + static const char *be_get_client_stub_fname (); static const char *be_get_client_inline_fname ( bool base_name_only = false); @@ -89,9 +89,9 @@ public: static const char *be_get_server_template_hdr_fname ( bool base_name_only = false); - static const char *be_get_server_skeleton_fname (void); + static const char *be_get_server_skeleton_fname (); - static const char *be_get_implementation_skeleton_fname (void); + static const char *be_get_implementation_skeleton_fname (); static const char *be_get_server_template_skeleton_fname ( bool base_name_only = false); @@ -250,14 +250,14 @@ public: /// Returns the macro name for exporting server side classes in Win32 /// DLL. - const char* skel_export_macro (void) const; + const char* skel_export_macro () const; /// Set the macro name for export server side classes in Win32 DLL. void skel_export_macro (const char* s); /// Returns the name of the include file that contains the server /// side export macro definition. - const char* skel_export_include (void) const; + const char* skel_export_include () const; /// Set the name of the include file that contains the server side /// export macro definition. @@ -265,7 +265,7 @@ public: /// Returns the name of the include file that will be generated for the /// server side export macro definition. - const char* skel_export_file (void) const; + const char* skel_export_file () const; /// Set the name of the include file that the will be generated for server /// side export macro definition. @@ -273,14 +273,14 @@ public: /// Returns the macro name for exporting client side classes in Win32 /// DLL. - const char* stub_export_macro (void) const; + const char* stub_export_macro () const; /// Set the macro name for export client side classes in Win32 DLL. void stub_export_macro (const char* s); /// Returns the name of the include file that contains the client /// side export macro definition. - const char* stub_export_include (void) const; + const char* stub_export_include () const; /// Set the name of the include file that contains the client side /// export macro definition. @@ -288,7 +288,7 @@ public: /// Returns the name of the include file will be generated for the client /// side export macro definition. - const char* stub_export_file (void) const; + const char* stub_export_file () const; /// Set the name of the include file that will be generated for the client /// side export macro definition. @@ -296,14 +296,14 @@ public: /// Returns the macro name for exporting *A.h file classes in Win32 /// DLL. - const char* anyop_export_macro (void) const; + const char* anyop_export_macro () const; /// Set the macro name for export *A.h file classes in Win32 DLL. void anyop_export_macro (const char* s); /// Returns the name of the include file that contains the *A.h /// file export macro definition. - const char* anyop_export_include (void) const; + const char* anyop_export_include () const; /// Set the name of the include file that contains the *A.h file /// export macro definition. @@ -311,14 +311,14 @@ public: /// Returns the macro name for exporting exec impl classes in Win32 /// DLL. - const char* exec_export_macro (void) const; + const char* exec_export_macro () const; /// Set the macro name for export exec impl classes in Win32 DLL. void exec_export_macro (const char* s); /// Returns the name of the include file that contains the exec /// impl export macro definition. - const char* exec_export_include (void) const; + const char* exec_export_include () const; /// Set the name of the include file that contains the exec impl /// export macro definition. @@ -326,14 +326,14 @@ public: /// Returns the macro name for exporting CIAO svnt classes in Win32 /// DLL. - const char* svnt_export_macro (void) const; + const char* svnt_export_macro () const; /// Set the macro name for export CIAO svnt classes in Win32 DLL. void svnt_export_macro (const char* s); /// Returns the name of the include file that contains the CIAO /// svnt export macro definition. - const char* svnt_export_include (void) const; + const char* svnt_export_include () const; /// Set the name of the include file that contains the CIAO svnt /// export macro definition. @@ -341,7 +341,7 @@ public: /// Returns the macro name for exporting CIAO connector /// classes in Win32 DLL. - const char* conn_export_macro (void) const; + const char* conn_export_macro () const; /// Set the macro name for export CIAO connector /// classes in Win32 DLL. @@ -349,7 +349,7 @@ public: /// Returns the name of the include file that contains the CIAO /// connector export macro definition. - const char* conn_export_include (void) const; + const char* conn_export_include () const; /// Set the name of the include file that contains the CIAO /// connector export macro definition. @@ -357,7 +357,7 @@ public: /// Returns the name of the include file to be used for precompiled /// header support. - const char* pch_include (void) const; + const char* pch_include () const; /// Set the name of the include file to be used for precompiled /// header support. @@ -365,7 +365,7 @@ public: /// Returns the name of the include file to be put at the top of /// every header file. - const char* pre_include (void) const; + const char* pre_include () const; /// Set the name of the include file to be put at the top of every /// header file. @@ -373,21 +373,21 @@ public: /// Returns the name of the include file to be put at the bottom of /// every header file. - const char* post_include (void) const; + const char* post_include () const; /// Set the name of the include file to be put at the bottom of every /// header file. void post_include (const char* s); /// Returns the guard that is placed in the client header file - const char* include_guard (void) const; + const char* include_guard () const; /// Set the guard that is placed in the client header file void include_guard (const char* s); /// Returns the name of the include file that is used instead of the own /// generated client header file - const char* safe_include (void) const; + const char* safe_include () const; /// set the name of the include file that is used instead of the own /// generated client header file @@ -395,7 +395,7 @@ public: /// Returns the name of the include file that should on get /// generated in the client header file - const char* unique_include (void) const; + const char* unique_include () const; /// Set the name of the include file that should on get /// generated in the client header file @@ -403,7 +403,7 @@ public: /// Returns the name of the include file that should be used as /// stripped_filename - const char* stripped_filename (void) const; + const char* stripped_filename () const; /// Set the name of the include file that should be used as stripped_filename void stripped_filename (const char* s); @@ -412,27 +412,27 @@ public: void versioning_begin (const char* s); /// Get text that opens a "versioned" namespace. - const char * versioning_begin (void) const; + const char * versioning_begin () 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; + const char * versioning_include () const; /// Get text that opens a "versioned" namespace for core TAO/orbsvcs /// related code. - const char * core_versioning_begin (void) const; + const char * core_versioning_begin () const; /// Set text that closes a "versioned" namespace. void versioning_end (const char* s); /// Get text that closes a "versioned" namespace. - const char * versioning_end (void) const; + const char * versioning_end () const; /// Get text that closes a "versioned" namespace for core TAO/orbsvcs /// related code. - const char * core_versioning_end (void) const; + const char * core_versioning_end () const; // = Set and get methods for different file name endings. @@ -440,25 +440,25 @@ public: void client_hdr_ending (const char* s); /// Get the client_hdr_ending. - const char* client_hdr_ending (void) const; + const char* client_hdr_ending () const; /// Set the client_inline_ending. void client_inline_ending (const char* s); /// Get the client_inline_ending. - const char* client_inline_ending (void) const; + const char* client_inline_ending () const; /// Set the client_stub_ending. void client_stub_ending (const char* s); /// Get the client_stub_ending. - const char* client_stub_ending (void) const; + const char* client_stub_ending () const; /// Set the server_hdr_ending. void server_hdr_ending (const char* s); /// Get the server_hdr_ending. - const char* server_hdr_ending (void) const; + const char* server_hdr_ending () const; /// Set the implementation_hdr_ending. void implementation_hdr_ending (const char* s); @@ -473,121 +473,121 @@ public: void implementation_skel_ending (const char* s); /// Get the implementation_hdr_ending. - const char* implementation_hdr_ending (void) const; + const char* implementation_hdr_ending () const; ///Get implementation class prefix - const char* impl_class_prefix (void) const; + const char* impl_class_prefix () const; ///Get implementation class suffix - const char* impl_class_suffix (void) const; + const char* impl_class_suffix () const; /// Get the implementation_skel_ending. - const char* implementation_skel_ending (void) const; + const char* implementation_skel_ending () const; /// Set the server_template_hdr_ending. void server_template_hdr_ending (const char* s); /// Get the server_template_hdr_ending. - const char* server_template_hdr_ending (void) const; + const char* server_template_hdr_ending () const; /// Set the server_skeleton_ending. void server_skeleton_ending (const char* s); /// Get the server_skeleton_ending. - const char* server_skeleton_ending (void) const; + const char* server_skeleton_ending () const; /// Set the server_template_skeleton_ending. void server_template_skeleton_ending (const char* s); /// Get the server_template_skeleton_ending. - const char* server_template_skeleton_ending (void) const; + const char* server_template_skeleton_ending () const; /// Set the anyop_header_ending. void anyop_header_ending (const char* s); /// Get the anyop_header_ending. - const char* anyop_header_ending (void) const; + const char* anyop_header_ending () const; /// Set the anyop_source_ending. void anyop_source_ending (const char* s); /// Get the anyop_source_ending. - const char* anyop_source_ending (void) const; + const char* anyop_source_ending () const; /// Similar to above, but for CIAO servant and executor /// impl and executor IDL files, if generated. void ciao_svnt_header_template_ending (const char* s); - const char* ciao_svnt_header_template_ending (void) const; + const char* ciao_svnt_header_template_ending () const; void ciao_svnt_source_template_ending (const char* s); - const char* ciao_svnt_source_template_ending (void) const; + const char* ciao_svnt_source_template_ending () const; void ciao_svnt_header_ending (const char* s); - const char* ciao_svnt_header_ending (void) const; + const char* ciao_svnt_header_ending () const; void ciao_svnt_source_ending (const char* s); - const char* ciao_svnt_source_ending (void) const; + const char* ciao_svnt_source_ending () const; void ciao_exec_header_ending (const char* s); - const char* ciao_exec_header_ending (void) const; + const char* ciao_exec_header_ending () const; void ciao_exec_source_ending (const char* s); - const char* ciao_exec_source_ending (void) const; + const char* ciao_exec_source_ending () const; void ciao_exec_stub_header_ending (const char* s); - const char* ciao_exec_stub_header_ending (void) const; + const char* ciao_exec_stub_header_ending () const; void ciao_exec_idl_ending (const char* s); - const char* ciao_exec_idl_ending (void) const; + const char* ciao_exec_idl_ending () const; void ciao_conn_header_ending (const char* s); - const char* ciao_conn_header_ending (void) const; + const char* ciao_conn_header_ending () const; void ciao_conn_source_ending (const char* s); - const char* ciao_conn_source_ending (void) const; + const char* ciao_conn_source_ending () const; /// For generating TypeSupport header file includes. void dds_typesupport_hdr_ending (const char* s); - const char* dds_typesupport_hdr_ending (void) const; + const char* dds_typesupport_hdr_ending () const; /// For optionally generating CIAO AMI connector IDL file. void ciao_ami_conn_idl_ending (const char* s); - const char* ciao_ami_conn_idl_ending (void) const; + const char* ciao_ami_conn_idl_ending () const; /// For optionally generating CIAO AMI reply handler /// impl header file. void ciao_ami_conn_impl_hdr_ending (const char* s); - const char* ciao_ami_conn_impl_hdr_ending (void) const; + const char* ciao_ami_conn_impl_hdr_ending () const; /// For optionally generating CIAO AMI reply handler /// impl source file. void ciao_ami_conn_impl_src_ending (const char* s); - const char* ciao_ami_conn_impl_src_ending (void) const; + const char* ciao_ami_conn_impl_src_ending () const; /// For optionally controlling the container type, default is Session void ciao_container_type (const char* s); - const char* ciao_container_type (void) const; + const char* ciao_container_type () const; /// Set the clonable_in_args. void use_clonable_in_args (bool clonable); /// Get the clonable_in_args setting. - bool use_clonable_in_args (void) const; + bool use_clonable_in_args () const; /// Get the gen_seq_template_export_ member. - bool gen_template_export (void) const; + bool gen_template_export () const; /// Set the gen_seq_template_export_ member. void gen_template_export (bool val); /// Get the gen_ostream_operators_ member. - bool gen_ostream_operators (void) const; + bool gen_ostream_operators () const; /// Set the gen_ostream_operators_ member. void gen_ostream_operators (bool val); /// Get the gen_static_desc_operations_ member. - bool gen_static_desc_operations (void) const; + bool gen_static_desc_operations () const; /// Set the gen_static_desc_operations_ member. void gen_static_desc_operations (bool val); @@ -605,7 +605,7 @@ public: * to be kept. Default is current directory from which the * <tao_idl> is called. */ - const char* output_dir (void) const; + const char* output_dir () const; /// Set the path for all *C.* file includes. /// Default is local directory or $TAO_ROOT/tao. @@ -613,7 +613,7 @@ public: /// Get the path for all *C.* file includes. /// Default is local directory or $TAO_ROOT/tao. - const char* stub_include_dir (void) const; + const char* stub_include_dir () const; /// Set the directory where all the *S.* files are /// to be kept. Default is output_dir_. @@ -621,7 +621,7 @@ public: /// Get the directory where all the *S.* files are /// to be kept. Default is output_dir_. - const char* skel_output_dir (void) const; + const char* skel_output_dir () const; /// Set the directory where all the *A.* files are /// to be kept. Default is output_dir_. @@ -629,7 +629,7 @@ public: /// Get the directory where all the *A.* files are /// to be kept. Default is output_dir_. - const char* anyop_output_dir (void) const; + const char* anyop_output_dir () const; /// Set the directory where all the *exec.* files are /// to be kept. Default is output_dir_. @@ -637,10 +637,10 @@ public: /// Get the directory where all the *exec.* files are /// to be kept. Default is output_dir_. - const char* exec_output_dir (void) const; + const char* exec_output_dir () const; ///Get the flag for not overwriting already existing exec files. - bool overwrite_not_exec (void) const; + bool overwrite_not_exec () const; ///Set the flag for not overwriting already existing exec files. void overwrite_not_exec (bool val); @@ -649,138 +649,138 @@ public: void any_support (bool); /// Check Any support. - bool any_support (void) const; + bool any_support () const; /// Set cdr support. void cdr_support (bool); /// Check cdr support. - bool cdr_support (void) const; + bool cdr_support () const; /// Set TypeCode support. void tc_support (bool); /// Check TypeCode support - bool tc_support (void) const; + bool tc_support () const; /// Set optimized valuetype member accessor generation. void obv_opt_accessor (bool); /// Check optimized valuetype member accessor generation. - bool obv_opt_accessor (void) const; + bool obv_opt_accessor () const; /// Set generation of implementation files. void gen_impl_files (bool); /// Check if we want to generate implementation files. - bool gen_impl_files (void) const; + bool gen_impl_files () const; /// Set generation of source file and line number for implementation files. void gen_impl_debug_info (bool); /// Check generation of source file and line number implementation files. - bool gen_impl_debug_info (void) const; + bool gen_impl_debug_info () const; /// Set generation of copy constructor. void gen_copy_ctor (bool); /// Check if we want to generate the copy constructor. - bool gen_copy_ctor (void) const; + bool gen_copy_ctor () const; /// Set the generation of the assignment operator. void gen_assign_op (bool); /// Check if we want to generate the assignment operator. - bool gen_assign_op (void) const; + bool gen_assign_op () const; /// Set whether we want to generate Thru_POA collocation stubs. void gen_thru_poa_collocation (bool); /// Check if we want to generate Thru_POA collocation stubs. - bool gen_thru_poa_collocation (void) const; + bool gen_thru_poa_collocation () const; /// Set whether we want to generate Direct collocation stubs. void gen_direct_collocation (bool); /// Check if we want to generate Direct collocation stubs. - bool gen_direct_collocation (void) const; + bool gen_direct_collocation () const; /// Set whether we want to generate for CORBA/e void gen_corba_e (bool); /// Check if we want to generate for CORBA/e - bool gen_corba_e (void) const; + bool gen_corba_e () const; /// Set whether we want to generate for Minimum CORBA void gen_minimum_corba (bool); /// Check if we want to generate for Minimum CORBA - bool gen_minimum_corba (void) const; + bool gen_minimum_corba () const; /// Set whether we want to generate for noeventCCM void gen_noeventccm (bool); /// Check if we want to generate for noeventCCM - bool gen_noeventccm (void) const; + bool gen_noeventccm () const; /// Set whether we want to generate for LwCCM void gen_lwccm (bool); /// Check if we want to generate for LwCCM - bool gen_lwccm (void) const; + bool gen_lwccm () const; /// Set optimized typecodes. void opt_tc (bool); /// Check if TypeCodes are optimized. - bool opt_tc (void) const; + bool opt_tc () const; /// To enable or disable AMI4CCM call back feature void ami4ccm_call_back (bool value); /// Return the flag. - bool ami4ccm_call_back (void) const; + bool ami4ccm_call_back () const; /// To enable or disable AMI call back feature of the Messaging /// specification in the generated code. void ami_call_back (bool value); /// Return the flag. - bool ami_call_back (void) const; + bool ami_call_back () const; /// To enable or disable AMH in the generated code. void gen_amh_classes (bool value); /// Return the flag. - bool gen_amh_classes (void) const; + bool gen_amh_classes () const; /// Set the generation of tie classes and files. void gen_tie_classes (bool value); /// Return the flag. - bool gen_tie_classes (void) const; + bool gen_tie_classes () const; /// To enable or disable AMI call back feature of the Messaging /// specification in the generated code. void gen_smart_proxies (bool value); /// Return the flag. - bool gen_smart_proxies (void) const; + bool gen_smart_proxies () const; /// Set the flag. void gen_inline_constants (bool value); /// Return the flag. - bool gen_inline_constants (void) const; + bool gen_inline_constants () const; /// Set the flag. void gen_orb_h_include (bool value); /// Return the flag. - bool gen_orb_h_include (void) const; + bool gen_orb_h_include () const; /// Generate an empty anyop header (A.h) - bool gen_empty_anyop_header (void) const; + bool gen_empty_anyop_header () const; /// Generate an empty anyop header (A.h) void gen_empty_anyop_header (bool value); @@ -790,144 +790,144 @@ public: /// Return the enumerated value for the lookup strategy. Default is /// perfect hashing. - LOOKUP_STRATEGY lookup_strategy (void) const; + LOOKUP_STRATEGY lookup_strategy () const; /// Set the DDS implementation. void dds_impl (char const * const val); /// Return the enumerated value for the DDS implementation. /// Default is NDDS. - DDS_IMPL dds_impl (void) const; + DDS_IMPL dds_impl () const; /// Cleanup function. - void destroy (void); + void destroy (); /// Used in the generation of extern function declarations so we /// can use non-defined interfaces as members and parameters. ACE_Unbounded_Queue<be_interface_fwd *> non_defined_interfaces; /// Accessor for the member, sets it on the first call. - AST_PredefinedType *void_type (void); + AST_PredefinedType *void_type (); /// Accessor for the member, sets it on the first call. - be_interface *ccmobject (void); + be_interface *ccmobject (); /// Accessor for the member, sets it on the first call. - be_module *messaging (void); + be_module *messaging (); /// Accessor for the member, sets it on the first call. - be_valuetype *messaging_exceptionholder (void); + be_valuetype *messaging_exceptionholder (); /// Accessor for the member, sets it on the first call. - be_interface *messaging_replyhandler (void); + be_interface *messaging_replyhandler (); /// Accessors for the member. - bool gen_anyop_files (void) const; + bool gen_anyop_files () const; void gen_anyop_files (bool val); /// Accessors for the member gen_skel_files_. - bool gen_skel_files (void) const; + bool gen_skel_files () const; void gen_skel_files (bool val); /// Accessors for the member gen_svnt_cpp_files_. - bool gen_svnt_cpp_files (void) const; + bool gen_svnt_cpp_files () const; void gen_svnt_cpp_files (bool val); /// Accessors for the member gen_svnt_t_files_. - bool gen_svnt_t_files (void) const; + bool gen_svnt_t_files () const; void gen_svnt_t_files (bool val); /// Accessors for the member gen_client_inline_. - bool gen_client_inline (void) const; + bool gen_client_inline () const; void gen_client_inline (bool val); /// Accessors for the member gen_client_stub_. - bool gen_client_stub (void) const; + bool gen_client_stub () const; void gen_client_stub (bool val); /// Accessors for the member gen_client_header_. - bool gen_client_header (void) const; + bool gen_client_header () const; void gen_client_header (bool val); /// Accessors for the member gen_server_skeleton_. - bool gen_server_skeleton (void) const; + bool gen_server_skeleton () const; void gen_server_skeleton (bool val); /// Accessors for the member gen_server_header_. - bool gen_server_header (void) const; + bool gen_server_header () const; void gen_server_header (bool val); /// Accessors for the member gen_local_iface_anyops_. - bool gen_local_iface_anyops (void) const; + bool gen_local_iface_anyops () const; void gen_local_iface_anyops (bool val); /// Accessors for the member gen_custom_ending_. - bool gen_custom_ending (void) const; + bool gen_custom_ending () const; void gen_custom_ending (bool val); /// Accessors for the member gen_unique_guards_. - bool gen_unique_guards (void) const; + bool gen_unique_guards () const; void gen_unique_guards (bool val); /// Accessors for the corresponding members. - bool gen_ciao_svnt (void) const; + bool gen_ciao_svnt () const; void gen_ciao_svnt (bool val); - bool gen_ciao_exec_idl (void) const; + bool gen_ciao_exec_idl () const; void gen_ciao_exec_idl (bool val); - bool gen_ciao_exec_impl (void) const; + bool gen_ciao_exec_impl () const; void gen_ciao_exec_impl (bool val); - bool gen_ciao_exec_reactor_impl (void) const; + bool gen_ciao_exec_reactor_impl () const; void gen_ciao_exec_reactor_impl (bool val); - bool gen_ciao_conn_impl (void) const; + bool gen_ciao_conn_impl () const; void gen_ciao_conn_impl (bool val); - bool gen_dds_typesupport_idl (void) const; + bool gen_dds_typesupport_idl () const; void gen_dds_typesupport_idl (bool val); - bool gen_ciao_valuefactory_reg (void) const; + bool gen_ciao_valuefactory_reg () const; void gen_ciao_valuefactory_reg (bool val); - bool gen_stub_export_hdr_file (void) const; + bool gen_stub_export_hdr_file () const; void gen_stub_export_hdr_file (bool val); - bool gen_skel_export_hdr_file (void) const; + bool gen_skel_export_hdr_file () const; void gen_skel_export_hdr_file (bool val); - bool gen_svnt_export_hdr_file (void) const; + bool gen_svnt_export_hdr_file () const; void gen_svnt_export_hdr_file (bool val); - bool gen_exec_export_hdr_file (void) const; + bool gen_exec_export_hdr_file () const; void gen_exec_export_hdr_file (bool val); - bool gen_conn_export_hdr_file (void) const; + bool gen_conn_export_hdr_file () const; void gen_conn_export_hdr_file (bool val); - bool alt_mapping (void) const; + bool alt_mapping () const; void alt_mapping (bool val); - bool in_facet_servant (void) const; + bool in_facet_servant () const; void in_facet_servant (bool val); - bool gen_arg_traits (void) const; + bool gen_arg_traits () const; void gen_arg_traits (bool val); - bool gen_anytypecode_adapter (void) const; + bool gen_anytypecode_adapter () const; void gen_anytypecode_adapter (bool val); bool no_fixed_err () const; void no_fixed_err (bool val); - unsigned long tab_size (void) const; + unsigned long tab_size () const; void tab_size (unsigned long val); /// Command line passed to ACE_Process::spawn. Different /// implementations in IDL and IFR backends. - ACE_CString spawn_options (void); + ACE_CString spawn_options (); /** * Parse an argument that the frontend did not recognize. diff --git a/TAO/TAO_IDL/be_include/be_helper.h b/TAO/TAO_IDL/be_include/be_helper.h index 3f6fef60936..1acdf87dbc5 100644 --- a/TAO/TAO_IDL/be_include/be_helper.h +++ b/TAO/TAO_IDL/be_include/be_helper.h @@ -28,12 +28,12 @@ class AST_Expression; // and use the current indentation for the succeeding line struct TAO_NL { - TAO_NL (void); + TAO_NL (); }; struct TAO_NL_2 { - TAO_NL_2 (void); + TAO_NL_2 (); }; /** @@ -123,9 +123,9 @@ public: CIAO_AMI_RH_IMPL_SRC }; - TAO_OutStream (void); + TAO_OutStream (); - virtual ~TAO_OutStream (void); + virtual ~TAO_OutStream (); /// Open the underlying low-level handle for output. int open (const char *fname, @@ -135,10 +135,10 @@ public: void stream_type (TAO_OutStream::STREAM_TYPE); /// Return the stream type - TAO_OutStream::STREAM_TYPE stream_type (void); + TAO_OutStream::STREAM_TYPE stream_type (); /// Return the underlying lowlevel file pointer. - FILE *&file (void); + FILE *&file (); /// Increment the indentation level and by default actually indent the output /// accordingly @@ -149,13 +149,13 @@ public: int decr_indent (unsigned short flag = 1); /// Reset indentation level to 0 - int reset (void); + int reset (); /// Indent starting next line - int indent (void); + int indent (); /// Put a newline and indent on the next line - int nl (void); + int nl (); /// "printf" style variable argument print int print (const char *format, ...) @@ -167,7 +167,7 @@ public: bool add_stream_type_suffix = true); /// Generate an endif statement - int gen_endif (void); + int gen_endif (); // =overloaded operators // Avoid duplication for the underlying type of size_t diff --git a/TAO/TAO_IDL/be_include/be_home.h b/TAO/TAO_IDL/be_include/be_home.h index 1161da68920..7f4156fdfe4 100644 --- a/TAO/TAO_IDL/be_include/be_home.h +++ b/TAO/TAO_IDL/be_include/be_home.h @@ -35,12 +35,12 @@ public: AST_Interface **supports_flat, long n_supports_flat); - virtual ~be_home (void); + virtual ~be_home (); void scan (UTL_Scope *s); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor* visitor); diff --git a/TAO/TAO_IDL/be_include/be_interface.h b/TAO/TAO_IDL/be_include/be_interface.h index 999486b78dd..55b5bb39736 100644 --- a/TAO/TAO_IDL/be_include/be_interface.h +++ b/TAO/TAO_IDL/be_include/be_interface.h @@ -50,15 +50,15 @@ public: bool abstract); /// Destructor. - ~be_interface (void); + ~be_interface (); // Methods, which access the strategy. /// Return the local name. - const char *local_name (void); + const char *local_name (); /// Retrieve the fully scoped skel class name. - const char *full_skel_name (void); + const char *full_skel_name (); /// Retrieve the fully qualified collocated class name. const char *full_coll_name (int); @@ -67,21 +67,21 @@ public: const char *local_coll_name (int); /// retrieve the name of the direct proxy implementation. - virtual const char *direct_proxy_impl_name (void); + virtual const char *direct_proxy_impl_name (); /// retrieve the fully qualified name of the direct proxy /// implementation. - virtual const char *full_direct_proxy_impl_name (void); + virtual const char *full_direct_proxy_impl_name (); /// Return the client scope that encloses the interface. - virtual const char *client_enclosing_scope (void); + virtual const char *client_enclosing_scope (); /// Return the "flattened" scope that encloses /// the interface. - virtual const char *flat_client_enclosing_scope (void); + virtual const char *flat_client_enclosing_scope (); /// Return the server scope that encloses the interface. - virtual const char *server_enclosing_scope (void); + virtual const char *server_enclosing_scope (); /// Retrieve skeleton name. const char *relative_skel_name (const char *skel_name); @@ -107,7 +107,7 @@ public: /// Generate the declarations used by the template _var, _out /// classes for interfaces, and by sequence template classes. - void gen_var_out_seq_decls (void); + void gen_var_out_seq_decls (); // Each interface (to fix names "T") also defines two help classes, // the "collocated" class inherits from T, but delegates on the @@ -148,19 +148,19 @@ public: * 0 => no * 1 => yes */ - int in_mult_inheritance (void); + int in_mult_inheritance (); /// Set a new value. void in_mult_inheritance (int mi); /// Applies to interfaces, components, and homes. - bool has_rw_attributes (void) const; + bool has_rw_attributes () const; /// Pass along BE-specific member values when redefining a fwd decl. virtual void redefine (AST_Interface *from); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); @@ -237,10 +237,10 @@ public: /// Returns the original interface from which this one was created, /// applies only to implied IDL - be_interface *original_interface (void); + be_interface *original_interface (); /// Is EventConsumerBase our parent? - bool is_event_consumer (void); + bool is_event_consumer (); /** * Common code for facet generation, whether we are @@ -252,14 +252,14 @@ public: /// Used with ami4ccm. int gen_ami4ccm_idl (TAO_OutStream *os); - bool is_ami_rh (void) const; + bool is_ami_rh () const; void is_ami_rh (bool val); - bool is_ami4ccm_rh (void) const; + bool is_ami4ccm_rh () const; void is_ami4ccm_rh (bool val); /// Accessors for the member. - bool dds_connector_traits_done (void) const; + bool dds_connector_traits_done () const; void dds_connector_traits_done (bool val); /// Generate the "public virtual" entries in the stub header. @@ -427,7 +427,7 @@ public: /** * This is a no-op, simply put here to keep compilers happy. */ - virtual ~TAO_IDL_Inheritance_Hierarchy_Worker (void); + virtual ~TAO_IDL_Inheritance_Hierarchy_Worker (); /// Define the method invoked during the inheritance traversal /** diff --git a/TAO/TAO_IDL/be_include/be_interface_fwd.h b/TAO/TAO_IDL/be_include/be_interface_fwd.h index 683af1090b0..29271083e30 100644 --- a/TAO/TAO_IDL/be_include/be_interface_fwd.h +++ b/TAO/TAO_IDL/be_include/be_interface_fwd.h @@ -33,7 +33,7 @@ public: be_interface_fwd (AST_Interface *dummy, UTL_ScopedName *n); - virtual ~be_interface_fwd (void); + virtual ~be_interface_fwd (); /// Mutator overrides for be_type members. If we have been /// defined, we want the full definition to be set as well. @@ -41,7 +41,7 @@ public: virtual void seen_in_operation (bool val); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor* visitor); diff --git a/TAO/TAO_IDL/be_include/be_mirror_port.h b/TAO/TAO_IDL/be_include/be_mirror_port.h index 1fb3e445b58..aa2737c7e29 100644 --- a/TAO/TAO_IDL/be_include/be_mirror_port.h +++ b/TAO/TAO_IDL/be_include/be_mirror_port.h @@ -31,9 +31,9 @@ public: UTL_ScopedName *n, AST_PortType *porttype_ref); - virtual ~be_mirror_port (void); + virtual ~be_mirror_port (); - virtual void destroy (void); + virtual void destroy (); virtual int accept (be_visitor *visitor); }; diff --git a/TAO/TAO_IDL/be_include/be_module.h b/TAO/TAO_IDL/be_include/be_module.h index 620ffdb5e45..9fe8eb3118b 100644 --- a/TAO/TAO_IDL/be_include/be_module.h +++ b/TAO/TAO_IDL/be_include/be_module.h @@ -28,7 +28,7 @@ public: be_module (UTL_ScopedName *n, AST_Module *previous = 0); /// Cleanup method. - virtual void destroy (void); + virtual void destroy (); // Visiting virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_native.h b/TAO/TAO_IDL/be_include/be_native.h index 341e7eccb4a..1a39721737a 100644 --- a/TAO/TAO_IDL/be_include/be_native.h +++ b/TAO/TAO_IDL/be_include/be_native.h @@ -30,16 +30,16 @@ class be_native : public virtual AST_Native, public: be_native (UTL_ScopedName *n); - virtual ~be_native (void) {} + virtual ~be_native () {} /// Generate the typecode description. - virtual int gen_typecode (void); + virtual int gen_typecode (); /// Return typecode size. - virtual long tc_size (void); + virtual long tc_size (); /// Cleanup. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_null_return_emitter.h b/TAO/TAO_IDL/be_include/be_null_return_emitter.h index 9bfc930ea6f..56fd4e89cff 100644 --- a/TAO/TAO_IDL/be_include/be_null_return_emitter.h +++ b/TAO/TAO_IDL/be_include/be_null_return_emitter.h @@ -23,7 +23,7 @@ class be_null_return_emitter { public: be_null_return_emitter (be_visitor_context *ctx); - ~be_null_return_emitter (void); + ~be_null_return_emitter (); int emit (be_type *node); diff --git a/TAO/TAO_IDL/be_include/be_operation.h b/TAO/TAO_IDL/be_include/be_operation.h index 8e08f3350df..3ecd2965573 100644 --- a/TAO/TAO_IDL/be_include/be_operation.h +++ b/TAO/TAO_IDL/be_include/be_operation.h @@ -35,10 +35,10 @@ public: bool local, bool abstract); - ~be_operation (void); + ~be_operation (); /// Cleanup method. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); @@ -49,13 +49,13 @@ public: /// Insert an exception at the head of the list. int be_insert_exception (AST_Exception *ex); - bool is_sendc_ami (void) const; + bool is_sendc_ami () const; void is_sendc_ami (bool val); - bool is_excep_ami (void) const; + bool is_excep_ami () const; void is_excep_ami (bool val); - bool is_attr_op (void) const; + bool is_attr_op () const; void is_attr_op (bool val); protected: diff --git a/TAO/TAO_IDL/be_include/be_param_holder.h b/TAO/TAO_IDL/be_include/be_param_holder.h index 64a39d8f9ff..2eecadb9e4a 100644 --- a/TAO/TAO_IDL/be_include/be_param_holder.h +++ b/TAO/TAO_IDL/be_include/be_param_holder.h @@ -26,10 +26,10 @@ public: be_param_holder (UTL_ScopedName *parameter_name, FE_Utils::T_Param_Info *info); - virtual ~be_param_holder (void); + virtual ~be_param_holder (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_porttype.h b/TAO/TAO_IDL/be_include/be_porttype.h index c6a9b607a04..4a0464e3083 100644 --- a/TAO/TAO_IDL/be_include/be_porttype.h +++ b/TAO/TAO_IDL/be_include/be_porttype.h @@ -31,9 +31,9 @@ class be_porttype : public virtual AST_PortType, public: be_porttype (UTL_ScopedName *n); - virtual ~be_porttype (void); + virtual ~be_porttype (); - virtual void destroy (void); + virtual void destroy (); virtual int accept (be_visitor *visitor); }; diff --git a/TAO/TAO_IDL/be_include/be_predefined_type.h b/TAO/TAO_IDL/be_include/be_predefined_type.h index 13dc307c4f5..026095fd4e6 100644 --- a/TAO/TAO_IDL/be_include/be_predefined_type.h +++ b/TAO/TAO_IDL/be_include/be_predefined_type.h @@ -37,11 +37,11 @@ public: virtual int accept (be_visitor* visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); protected: /// Overridden method. - virtual void compute_tc_name (void); + virtual void compute_tc_name (); // Compute and return the value. @@ -50,7 +50,7 @@ protected: * prefix, but the default compute_repoID() uses the #pragma's to * obtain prefixes. */ - virtual void compute_repoID (void); + virtual void compute_repoID (); }; #endif diff --git a/TAO/TAO_IDL/be_include/be_provides.h b/TAO/TAO_IDL/be_include/be_provides.h index 085659a1a5c..0f73ab08577 100644 --- a/TAO/TAO_IDL/be_include/be_provides.h +++ b/TAO/TAO_IDL/be_include/be_provides.h @@ -17,16 +17,16 @@ public: be_provides (UTL_ScopedName *n, AST_Type *provides_type); - virtual ~be_provides (void); + virtual ~be_provides (); // Non-virtual override of frontend method. - be_type *provides_type (void) const; + be_type *provides_type () const; // Visiting. virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif // BE_PROVIDES_H diff --git a/TAO/TAO_IDL/be_include/be_publishes.h b/TAO/TAO_IDL/be_include/be_publishes.h index 56082dbb30b..7a68c3fe304 100644 --- a/TAO/TAO_IDL/be_include/be_publishes.h +++ b/TAO/TAO_IDL/be_include/be_publishes.h @@ -16,16 +16,16 @@ public: be_publishes (UTL_ScopedName *n, AST_Type *publishes_type); - virtual ~be_publishes (void); + virtual ~be_publishes (); // Non-virtual override of frontend method. - be_eventtype *publishes_type (void) const; + be_eventtype *publishes_type () const; // Visiting. virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif // BE_PUBLISHES_H diff --git a/TAO/TAO_IDL/be_include/be_root.h b/TAO/TAO_IDL/be_include/be_root.h index 67e6e22076f..44a6ac9118c 100644 --- a/TAO/TAO_IDL/be_include/be_root.h +++ b/TAO/TAO_IDL/be_include/be_root.h @@ -28,10 +28,10 @@ class be_root : public virtual AST_Root, public: be_root (UTL_ScopedName *n); - virtual ~be_root (void); + virtual ~be_root (); /// Cleanup method. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_scope.h b/TAO/TAO_IDL/be_include/be_scope.h index db945b89d05..6eab19ad9e0 100644 --- a/TAO/TAO_IDL/be_include/be_scope.h +++ b/TAO/TAO_IDL/be_include/be_scope.h @@ -33,13 +33,13 @@ class be_scope : public virtual UTL_Scope { public: /// Default constructor. - be_scope (void); + be_scope (); /// Constructor that sets the node type. be_scope (AST_Decl::NodeType nt); /// Destructor. - virtual ~be_scope (void); + virtual ~be_scope (); /// To access the protected base class method fe_add_field. AST_Field *be_add_field (AST_Field *f); @@ -51,13 +51,13 @@ public: virtual void comma (unsigned short set); /// Get the comma producing state. - int comma (void) const; + int comma () const; /// Return the be_decl node corresponding to this scope node. - virtual be_decl *decl (void); + virtual be_decl *decl (); /// Recursively clean up scope members. - virtual void destroy (void); + virtual void destroy (); /// Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_sequence.h b/TAO/TAO_IDL/be_include/be_sequence.h index d7ccb6bd417..6d2deb80317 100644 --- a/TAO/TAO_IDL/be_include/be_sequence.h +++ b/TAO/TAO_IDL/be_include/be_sequence.h @@ -54,33 +54,33 @@ public: bool abstract); // Non-virtual override of frontend method. - be_type *base_type (void) const; + be_type *base_type () const; /// Create a name for ourselves. If we are typedefed, then we get the name of /// the typedef node, else we generate a name for ourselves. virtual int create_name (be_typedef *node); /// Return the managed type. - virtual MANAGED_TYPE managed_type (void); + virtual MANAGED_TYPE managed_type (); // Scope management functions. virtual AST_Sequence *fe_add_sequence (AST_Sequence *); /// Overridden method on the be_scope class. - virtual be_decl *decl (void); + virtual be_decl *decl (); /// Overridden from class be_type. virtual void gen_ostream_operator (TAO_OutStream *os, bool use_underscore); /// Cleanup method. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); /// Report the instance name for instantiation. - const char *instance_name (void); + const char *instance_name (); /// Common code for generating the name and parameters of our /// template sequence base class. @@ -89,16 +89,16 @@ public: AST_Decl *elem_scope); /// Accessors for the member. - be_field *field_node (void) const; + be_field *field_node () const; void field_node (be_field *node); /// Helper to create_name, also used by the traits visitor. - virtual char *gen_name (void); + virtual char *gen_name (); protected: /// Computes the fully scoped typecode name. - virtual void compute_tc_name (void); + virtual void compute_tc_name (); private: const char *smart_fwd_helper_name (AST_Decl *elem_scope, diff --git a/TAO/TAO_IDL/be_include/be_string.h b/TAO/TAO_IDL/be_include/be_string.h index 828482b47cc..0535b0596a4 100644 --- a/TAO/TAO_IDL/be_include/be_string.h +++ b/TAO/TAO_IDL/be_include/be_string.h @@ -39,11 +39,11 @@ public: virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); protected: /// Overridden method to compute typecode name. - virtual void compute_tc_name (void); + virtual void compute_tc_name (); }; #endif diff --git a/TAO/TAO_IDL/be_include/be_structure.h b/TAO/TAO_IDL/be_include/be_structure.h index fafbbc102d9..cb3014abab6 100644 --- a/TAO/TAO_IDL/be_include/be_structure.h +++ b/TAO/TAO_IDL/be_include/be_structure.h @@ -44,7 +44,7 @@ public: bool use_underscore); /// Cleanup method. - virtual void destroy (void); + virtual void destroy (); /// Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_structure_fwd.h b/TAO/TAO_IDL/be_include/be_structure_fwd.h index 1660b62f4da..25a5ed2f5a5 100644 --- a/TAO/TAO_IDL/be_include/be_structure_fwd.h +++ b/TAO/TAO_IDL/be_include/be_structure_fwd.h @@ -32,10 +32,10 @@ public: be_structure_fwd (AST_Structure *dummy, UTL_ScopedName *n); - virtual ~be_structure_fwd (void); + virtual ~be_structure_fwd (); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor* visitor); diff --git a/TAO/TAO_IDL/be_include/be_template_module.h b/TAO/TAO_IDL/be_include/be_template_module.h index 266fa5e8054..7ca8bb91071 100644 --- a/TAO/TAO_IDL/be_include/be_template_module.h +++ b/TAO/TAO_IDL/be_include/be_template_module.h @@ -32,9 +32,9 @@ public: UTL_ScopedName *n, FE_Utils::T_PARAMLIST_INFO *template_params); - virtual ~be_template_module (void); + virtual ~be_template_module (); - virtual void destroy (void); + virtual void destroy (); virtual int accept (be_visitor *visitor); }; diff --git a/TAO/TAO_IDL/be_include/be_template_module_inst.h b/TAO/TAO_IDL/be_include/be_template_module_inst.h index 688eeb9f6b4..2d5c917761f 100644 --- a/TAO/TAO_IDL/be_include/be_template_module_inst.h +++ b/TAO/TAO_IDL/be_include/be_template_module_inst.h @@ -14,10 +14,10 @@ public: AST_Template_Module *ref, FE_Utils::T_ARGLIST *template_args); - virtual ~be_template_module_inst (void); + virtual ~be_template_module_inst (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_template_module_ref.h b/TAO/TAO_IDL/be_include/be_template_module_ref.h index 0c7ca861f38..202d2a86b74 100644 --- a/TAO/TAO_IDL/be_include/be_template_module_ref.h +++ b/TAO/TAO_IDL/be_include/be_template_module_ref.h @@ -15,10 +15,10 @@ public: AST_Template_Module *ref, UTL_StrList *param_refs); - virtual ~be_template_module_ref (void); + virtual ~be_template_module_ref (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_type.h b/TAO/TAO_IDL/be_include/be_type.h index 66fedcba55d..e70c6e2c9fc 100644 --- a/TAO/TAO_IDL/be_include/be_type.h +++ b/TAO/TAO_IDL/be_include/be_type.h @@ -28,14 +28,14 @@ public: be_type (AST_Decl::NodeType nt, UTL_ScopedName *n); - virtual ~be_type (void); + virtual ~be_type (); /** * Return the typecode name. When both, the prefix and the suffix * are non null, it computes and returns a tc name. Else, it also * stores the result in a member variable. */ - UTL_ScopedName *tc_name (void); + UTL_ScopedName *tc_name (); /// Type name of a node used when generating declarations for smart /// proxies. @@ -44,7 +44,7 @@ public: const char *prefix = 0); /// Compute the value of the member. - void gen_fwd_helper_name (void); + void gen_fwd_helper_name (); /// No-op, overridden in derived classes. virtual void gen_ostream_operator (TAO_OutStream *os, @@ -57,7 +57,7 @@ public: bool accessor = false); /// Accessor to the member. - const char *fwd_helper_name (void) const; + const char *fwd_helper_name () const; void fwd_helper_name (const char *name); /// Generate _var and _out typedefs for structs and unions. @@ -67,11 +67,11 @@ public: void gen_stub_decls (TAO_OutStream *os); /// Accessors for the member. - bool seen_in_sequence (void) const; + bool seen_in_sequence () const; virtual void seen_in_sequence (bool val); /// Accessors for the member. - bool seen_in_operation (void) const; + bool seen_in_operation () const; virtual void seen_in_operation (bool val); /** @@ -80,17 +80,17 @@ public: * recursive simply using "base_type->node_type()" will not work, so * the most "unaliased" type is needed. */ - virtual AST_Decl::NodeType base_node_type (void) const; + virtual AST_Decl::NodeType base_node_type () const; /// Clean up allocated members. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor* visitor); protected: /// Computes the fully scoped typecode name. - virtual void compute_tc_name (void); + virtual void compute_tc_name (); /// Typecode name. UTL_ScopedName *tc_name_; diff --git a/TAO/TAO_IDL/be_include/be_typedef.h b/TAO/TAO_IDL/be_include/be_typedef.h index d05f7707a36..b1f3bfb5708 100644 --- a/TAO/TAO_IDL/be_include/be_typedef.h +++ b/TAO/TAO_IDL/be_include/be_typedef.h @@ -31,16 +31,16 @@ public: /// Overrides for be_type members. If we have been /// defined, we want the underlying type to be set as well. virtual void seen_in_sequence (bool val); - virtual bool seen_in_operation (void) const; + virtual bool seen_in_operation () const; virtual void seen_in_operation (bool val); /// Return the most primitive base type by traversing the chain of typedefed /// base types. - be_type *primitive_base_type (void); + be_type *primitive_base_type (); /// Return the most "unaliased" type node for the base type (see /// be_type.h). - virtual AST_Decl::NodeType base_node_type (void) const; + virtual AST_Decl::NodeType base_node_type () const; /// Overridden from class be_type. virtual void gen_member_ostream_operator (TAO_OutStream *os, @@ -49,7 +49,7 @@ public: bool accessor = false); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor *visitor); diff --git a/TAO/TAO_IDL/be_include/be_union.h b/TAO/TAO_IDL/be_include/be_union.h index 92083e831d4..2ffb8c2a4e0 100644 --- a/TAO/TAO_IDL/be_include/be_union.h +++ b/TAO/TAO_IDL/be_include/be_union.h @@ -35,28 +35,28 @@ public: virtual void redefine (AST_Structure *from); /// Do we have at least one member with multiple case labels? - virtual bool has_duplicate_case_labels (void); + virtual bool has_duplicate_case_labels (); /// Overridden from class be_type. virtual void gen_ostream_operator (TAO_OutStream *os, bool use_underscore); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); /// Visiting. virtual int accept (be_visitor *visitor); /// Decides whether a default switch case label in the generated copy /// constructor, assignment operator, etc. is needed. - bool gen_empty_default_label (void); + bool gen_empty_default_label (); /// Just a way to get at fe_add_union_branch() from the backend. AST_UnionBranch *be_add_union_branch (AST_UnionBranch *b); /// Returns total number of labels, useful when the union has /// multiple case labels. - ACE_UINT64 nlabels (void); + ACE_UINT64 nlabels (); }; #endif diff --git a/TAO/TAO_IDL/be_include/be_union_branch.h b/TAO/TAO_IDL/be_include/be_union_branch.h index 9c61769b2bd..e00a9419804 100644 --- a/TAO/TAO_IDL/be_include/be_union_branch.h +++ b/TAO/TAO_IDL/be_include/be_union_branch.h @@ -43,7 +43,7 @@ public: virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif diff --git a/TAO/TAO_IDL/be_include/be_union_fwd.h b/TAO/TAO_IDL/be_include/be_union_fwd.h index b9e9c73f542..76b5673dcc0 100644 --- a/TAO/TAO_IDL/be_include/be_union_fwd.h +++ b/TAO/TAO_IDL/be_include/be_union_fwd.h @@ -31,10 +31,10 @@ public: be_union_fwd (AST_Union *dummy, UTL_ScopedName *n); - virtual ~be_union_fwd (void); + virtual ~be_union_fwd (); /// Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int accept (be_visitor* visitor); diff --git a/TAO/TAO_IDL/be_include/be_union_label.h b/TAO/TAO_IDL/be_include/be_union_label.h index 413a821b302..0d9416f464c 100644 --- a/TAO/TAO_IDL/be_include/be_union_label.h +++ b/TAO/TAO_IDL/be_include/be_union_label.h @@ -15,7 +15,7 @@ public: virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif diff --git a/TAO/TAO_IDL/be_include/be_uses.h b/TAO/TAO_IDL/be_include/be_uses.h index 80cf76f975a..873b0c57f36 100644 --- a/TAO/TAO_IDL/be_include/be_uses.h +++ b/TAO/TAO_IDL/be_include/be_uses.h @@ -17,16 +17,16 @@ public: AST_Type *uses_type, bool is_multiple); - virtual ~be_uses (void); + virtual ~be_uses (); // Non-virtual override of frontend method. - be_type *uses_type (void) const; + be_type *uses_type () const; // Visiting. virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); void original_uses (be_uses *original_uses); // Sets the original uses from which this one was created, diff --git a/TAO/TAO_IDL/be_include/be_util.h b/TAO/TAO_IDL/be_include/be_util.h index ab65c5cafcd..159ae016118 100644 --- a/TAO/TAO_IDL/be_include/be_util.h +++ b/TAO/TAO_IDL/be_include/be_util.h @@ -48,15 +48,15 @@ public: /// Checks made after parsing args. static TAO_IDL_BE_Export void - arg_post_proc (void); + arg_post_proc (); /// Display usage of BE-specific options. static TAO_IDL_BE_Export void - usage (void); + usage (); /// Create an AST node generator. static TAO_IDL_BE_Export AST_Generator * - generator_init (void); + generator_init (); /// Called from various places. static const char * @@ -67,7 +67,7 @@ public: /// Called from various places. static bool - overwrite_ciao_exec_files (void); + overwrite_ciao_exec_files (); // Called by each node upon construction. static void set_arg_seen_bit (be_type *); diff --git a/TAO/TAO_IDL/be_include/be_valuebox.h b/TAO/TAO_IDL/be_include/be_valuebox.h index 6a1e4292f48..9ae4448823d 100644 --- a/TAO/TAO_IDL/be_include/be_valuebox.h +++ b/TAO/TAO_IDL/be_include/be_valuebox.h @@ -30,7 +30,7 @@ public: virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); }; #endif /* TAO_BE_VALUEBOX_H */ diff --git a/TAO/TAO_IDL/be_include/be_valuetype.h b/TAO/TAO_IDL/be_include/be_valuetype.h index 5dc0e9e5e47..38c8a990ba7 100644 --- a/TAO/TAO_IDL/be_include/be_valuetype.h +++ b/TAO/TAO_IDL/be_include/be_valuetype.h @@ -41,12 +41,12 @@ public: bool truncatable, bool custom); - ~be_valuetype (void); + ~be_valuetype (); virtual void redefine (AST_Interface *from); /// Should generate optimized form? - bool opt_accessor (void); + bool opt_accessor (); /// Generate the helper functions definition. virtual int gen_helper_header (char *local_name = 0, @@ -66,17 +66,17 @@ public: /// Generate the declarations used by the template _var, _out /// classes for valuetypes, and by sequence template classes. - void gen_var_out_seq_decls (void); + void gen_var_out_seq_decls (); /// Retrieve the fully scoped skel class name. - const char *full_obv_skel_name (void); + const char *full_obv_skel_name (); - const char *field_pd_prefix (void); + const char *field_pd_prefix (); - const char *field_pd_postfix (void); + const char *field_pd_postfix (); // For building the name for private data fields. - be_valuetype *statefull_inherit (void); + be_valuetype *statefull_inherit (); /// Load the insert queue with all the interfaces we support, and /// call the generic version of traverse_inheritance_graph(). @@ -95,16 +95,16 @@ public: ); /// Do we support at least one abstract interface? - bool supports_abstract (void) const; + bool supports_abstract () const; // Visiting. virtual int accept (be_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); /// Compute the fully scoped skel class name. - void compute_fullobvskelname (void); + void compute_fullobvskelname (); /// Compute the count of private/public/all data members. ACE_CDR::ULong data_members_count ( @@ -118,7 +118,7 @@ public: TAO_OutStream *os); /// Accessor to the member. - const char *fwd_helper_name (void) const; + const char *fwd_helper_name () const; // There are three possible situations. // (1) If there is no initializers but at least one operation. @@ -141,24 +141,24 @@ public: }; /// Determine what kind of factory needed. - FactoryStyle determine_factory_style (void); + FactoryStyle determine_factory_style (); /// Recurse down the inheritance tree to determine /// if valuetype has at least one operation/attribute. - bool have_operation (void); + bool have_operation (); /// Check if VT supports an interface with at least 1 operation. static bool have_supported_op (be_interface *node); /// Use the above enum and methods to determine this after the /// node's scope is visited but before code generation. - virtual bool will_have_factory (void); + virtual bool will_have_factory (); /// Decides whether to generate the initializing contstructor or not. - bool has_member (void); + bool has_member (); /// Accessors for the member - bool is_amh_excep_holder (void) const; + bool is_amh_excep_holder () const; void is_amh_excep_holder (bool val); private: diff --git a/TAO/TAO_IDL/be_include/be_valuetype_fwd.h b/TAO/TAO_IDL/be_include/be_valuetype_fwd.h index b72174d3a4e..4c0063ce7e9 100644 --- a/TAO/TAO_IDL/be_include/be_valuetype_fwd.h +++ b/TAO/TAO_IDL/be_include/be_valuetype_fwd.h @@ -31,13 +31,13 @@ public: be_valuetype_fwd (AST_Interface *dummy, UTL_ScopedName *n); - virtual ~be_valuetype_fwd (void); + virtual ~be_valuetype_fwd (); // Visiting. virtual int accept (be_visitor* visitor); // Cleanup - virtual void destroy (void); + virtual void destroy (); }; #endif // if !defined diff --git a/TAO/TAO_IDL/be_include/be_visitor.h b/TAO/TAO_IDL/be_include/be_visitor.h index e6ec9470ee7..ca89ed5f9c8 100644 --- a/TAO/TAO_IDL/be_include/be_visitor.h +++ b/TAO/TAO_IDL/be_include/be_visitor.h @@ -85,7 +85,7 @@ class TAO_OutStream; class be_visitor { public: - virtual ~be_visitor (void); + virtual ~be_visitor (); virtual int visit_decl (be_decl *d); virtual int visit_scope (be_scope *node); @@ -142,7 +142,7 @@ public: protected: // Not abstract but we want to force subclassing anyway. - be_visitor (void); + be_visitor (); }; #endif // TAO_BE_VISITOR_H diff --git a/TAO/TAO_IDL/be_include/be_visitor_amh_pre_proc.h b/TAO/TAO_IDL/be_include/be_visitor_amh_pre_proc.h index 0bee5dc3f84..14f2b23ff33 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_amh_pre_proc.h +++ b/TAO/TAO_IDL/be_include/be_visitor_amh_pre_proc.h @@ -37,7 +37,7 @@ private: public: be_visitor_amh_pre_proc (be_visitor_context *ctx); - virtual ~be_visitor_amh_pre_proc (void); + virtual ~be_visitor_amh_pre_proc (); virtual int visit_root (be_root *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_ami_pre_proc.h b/TAO/TAO_IDL/be_include/be_visitor_ami_pre_proc.h index d1706c12e24..a2f9f2ff70a 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_ami_pre_proc.h +++ b/TAO/TAO_IDL/be_include/be_visitor_ami_pre_proc.h @@ -41,7 +41,7 @@ private: public: be_visitor_ami_pre_proc (be_visitor_context *ctx); - virtual ~be_visitor_ami_pre_proc (void); + virtual ~be_visitor_ami_pre_proc (); virtual int visit_root (be_root *node); @@ -94,7 +94,7 @@ private: long &n_parents); /// Generate an *A.idl file for AMI4CCM. - int generate_ami4ccm_idl (void); + int generate_ami4ccm_idl (); }; #endif // TAO_BE_VISITOR_AMI_PRE_PROC_H diff --git a/TAO/TAO_IDL/be_include/be_visitor_any_extracted_type_decl.h b/TAO/TAO_IDL/be_include/be_visitor_any_extracted_type_decl.h index deec0954961..395dae51fd6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_any_extracted_type_decl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_any_extracted_type_decl.h @@ -29,7 +29,7 @@ class be_visitor_any_extracted_type_decl : public be_visitor_decl { public: be_visitor_any_extracted_type_decl (be_visitor_context *ctx); - virtual ~be_visitor_any_extracted_type_decl (void); + virtual ~be_visitor_any_extracted_type_decl (); virtual int visit_array (be_array *); virtual int visit_component (be_component *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_arg_traits.h b/TAO/TAO_IDL/be_include/be_visitor_arg_traits.h index a9cb4413182..761859541eb 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_arg_traits.h +++ b/TAO/TAO_IDL/be_include/be_visitor_arg_traits.h @@ -24,7 +24,7 @@ public: be_visitor_arg_traits (const char *S, be_visitor_context *ctx); - virtual ~be_visitor_arg_traits (void); + virtual ~be_visitor_arg_traits (); virtual int visit_root (be_root *node); virtual int visit_module (be_module *node); @@ -58,7 +58,7 @@ private: void generated (be_decl *node, bool val); - const char *insert_policy (void); + const char *insert_policy (); private: char *S_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_argument/arglist.h b/TAO/TAO_IDL/be_include/be_visitor_argument/arglist.h index 50bdba259e6..e1ae99ec493 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_argument/arglist.h +++ b/TAO/TAO_IDL/be_include/be_visitor_argument/arglist.h @@ -35,7 +35,7 @@ public: be_visitor_args_arglist (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_args_arglist (void); + virtual ~be_visitor_args_arglist (); /// visit the argument node virtual int visit_argument (be_argument *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_argument/argument.h b/TAO/TAO_IDL/be_include/be_visitor_argument/argument.h index 0985975fce0..2f320a41943 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_argument/argument.h +++ b/TAO/TAO_IDL/be_include/be_visitor_argument/argument.h @@ -36,7 +36,7 @@ public: be_visitor_args (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_args (void); + virtual ~be_visitor_args (); //= helper /// helper that produces either a nested name for @@ -45,7 +45,7 @@ public: const char *suffix = 0); /// return the direction of the argument node - virtual AST_Argument::Direction direction (void); + virtual AST_Argument::Direction direction (); /// must be overridden by derived classes virtual int visit_argument (be_argument *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_argument/invoke_cs.h b/TAO/TAO_IDL/be_include/be_visitor_argument/invoke_cs.h index 49a1a650456..023e96be6c2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_argument/invoke_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_argument/invoke_cs.h @@ -32,7 +32,7 @@ public: be_visitor_args_invoke_cs (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_args_invoke_cs (void); + virtual ~be_visitor_args_invoke_cs (); /// visit the argument node virtual int visit_argument (be_argument *node); @@ -93,7 +93,7 @@ public: virtual int visit_home (be_home *node); private: - int emit_common (void); + int emit_common (); int emit_common2 (be_type *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_argument/marshal_ss.h b/TAO/TAO_IDL/be_include/be_visitor_argument/marshal_ss.h index c7cd4332015..05e7225bd3b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_argument/marshal_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_argument/marshal_ss.h @@ -32,7 +32,7 @@ public: be_visitor_args_marshal_ss (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_args_marshal_ss (void); + virtual ~be_visitor_args_marshal_ss (); /// visit the argument node virtual int visit_argument (be_argument *node); @@ -94,7 +94,7 @@ public: virtual int visit_home (be_home *node); private: - int emit_common (void); + int emit_common (); int emit_common2 (be_type *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_argument/upcall_ss.h b/TAO/TAO_IDL/be_include/be_visitor_argument/upcall_ss.h index 6a91ca39d3d..42b8d547675 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_argument/upcall_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_argument/upcall_ss.h @@ -32,7 +32,7 @@ public: be_visitor_args_upcall_ss (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_args_upcall_ss (void); + virtual ~be_visitor_args_upcall_ss (); /// visit the argument node virtual int visit_argument (be_argument *node); @@ -91,7 +91,7 @@ public: virtual int visit_eventtype_fwd (be_eventtype_fwd *node); private: - int emit_common (void); + int emit_common (); int emit_common2 (be_type *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_argument/vardecl_ss.h b/TAO/TAO_IDL/be_include/be_visitor_argument/vardecl_ss.h index 6fee17d07a4..0fc6fd6c3a0 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_argument/vardecl_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_argument/vardecl_ss.h @@ -32,7 +32,7 @@ public: be_visitor_args_vardecl_ss (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_args_vardecl_ss (void); + virtual ~be_visitor_args_vardecl_ss (); /// visit the argument node virtual int visit_argument (be_argument *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h index 5fd66b6c4ea..b6463d0753f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_array/any_op_ch.h @@ -34,7 +34,7 @@ public: be_visitor_array_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_array_any_op_ch (void); + ~be_visitor_array_any_op_ch (); /// visit array virtual int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_array/any_op_cs.h index 85040aae980..776a873402e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_array/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_array/any_op_cs.h @@ -34,7 +34,7 @@ public: be_visitor_array_any_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_array_any_op_cs (void); + ~be_visitor_array_any_op_cs (); /// visit array virtual int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/array.h b/TAO/TAO_IDL/be_include/be_visitor_array/array.h index 42fa8a82bc4..b44e9e6a4a2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_array/array.h +++ b/TAO/TAO_IDL/be_include/be_visitor_array/array.h @@ -31,7 +31,7 @@ public: be_visitor_array (be_visitor_context *ctx); /// destructor - ~be_visitor_array (void); + ~be_visitor_array (); /// visit the array node virtual int visit_array (be_array *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h b/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h index 88742879048..4f0d219a1e6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_array/array_ch.h @@ -31,7 +31,7 @@ public: be_visitor_array_ch (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_array_ch (void); + virtual ~be_visitor_array_ch (); /// visit the array node virtual int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/array_ci.h b/TAO/TAO_IDL/be_include/be_visitor_array/array_ci.h index b4b1afeacc6..67ff101da07 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_array/array_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_array/array_ci.h @@ -31,7 +31,7 @@ public: be_visitor_array_ci (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_array_ci (void); + virtual ~be_visitor_array_ci (); /// visit the array node virtual int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h b/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h index 81be7e8326b..43f734b8916 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_array/array_cs.h @@ -31,7 +31,7 @@ public: be_visitor_array_cs (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_array_cs (void); + virtual ~be_visitor_array_cs (); /// visit the array node virtual int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_array/cdr_op_ch.h index 78e3f4614e0..fbcfc930785 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_array/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_array/cdr_op_ch.h @@ -34,7 +34,7 @@ public: be_visitor_array_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_array_cdr_op_ch (void); + ~be_visitor_array_cdr_op_ch (); /// visit array virtual int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_array/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_array/cdr_op_cs.h index 73ea075826d..e7d71720731 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_array/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_array/cdr_op_cs.h @@ -38,7 +38,7 @@ public: be_visitor_array_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_array_cdr_op_cs (void); + ~be_visitor_array_cdr_op_cs (); /// visit array virtual int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_attr_assign.h b/TAO/TAO_IDL/be_include/be_visitor_attr_assign.h index 2366290a19b..a3d6a8c23e0 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_attr_assign.h +++ b/TAO/TAO_IDL/be_include/be_visitor_attr_assign.h @@ -28,7 +28,7 @@ class be_visitor_attr_assign : public be_visitor_decl { public: be_visitor_attr_assign (be_visitor_context *ctx); - virtual ~be_visitor_attr_assign (void); + virtual ~be_visitor_attr_assign (); virtual int visit_array (be_array *); virtual int visit_component (be_component *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_attr_init.h b/TAO/TAO_IDL/be_include/be_visitor_attr_init.h index 19400767577..25b6bbdfdfb 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_attr_init.h +++ b/TAO/TAO_IDL/be_include/be_visitor_attr_init.h @@ -30,7 +30,7 @@ class be_visitor_attr_init : public be_visitor_decl { public: be_visitor_attr_init (be_visitor_context *ctx); - virtual ~be_visitor_attr_init (void); + virtual ~be_visitor_attr_init (); virtual int visit_array (be_array *); virtual int visit_component (be_component *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_attr_return.h b/TAO/TAO_IDL/be_include/be_visitor_attr_return.h index 32bc38e5b80..b29dad5b384 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_attr_return.h +++ b/TAO/TAO_IDL/be_include/be_visitor_attr_return.h @@ -28,7 +28,7 @@ class be_visitor_attr_return : public be_visitor_decl { public: be_visitor_attr_return (be_visitor_context *ctx); - virtual ~be_visitor_attr_return (void); + virtual ~be_visitor_attr_return (); virtual int visit_array (be_array *); virtual int visit_component (be_component *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_attr_setarg_type.h b/TAO/TAO_IDL/be_include/be_visitor_attr_setarg_type.h index 097d0f51695..e3acaf6a237 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_attr_setarg_type.h +++ b/TAO/TAO_IDL/be_include/be_visitor_attr_setarg_type.h @@ -28,7 +28,7 @@ class be_visitor_attr_setarg_type : public be_visitor_decl { public: be_visitor_attr_setarg_type (be_visitor_context *ctx); - virtual ~be_visitor_attr_setarg_type (void); + virtual ~be_visitor_attr_setarg_type (); virtual int visit_array (be_array *); virtual int visit_component (be_component *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_attribute/attribute.h b/TAO/TAO_IDL/be_include/be_visitor_attribute/attribute.h index d4345eb8312..61269d1923e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_attribute/attribute.h +++ b/TAO/TAO_IDL/be_include/be_visitor_attribute/attribute.h @@ -33,7 +33,7 @@ public: be_visitor_attribute (be_visitor_context *ctx); /// destructor - ~be_visitor_attribute (void); + ~be_visitor_attribute (); /// visit attribute. We provide code for this method in the derived class virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_attribute/ccm_init.h b/TAO/TAO_IDL/be_include/be_visitor_attribute/ccm_init.h index cdc80407df6..faf5717dc9f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_attribute/ccm_init.h +++ b/TAO/TAO_IDL/be_include/be_visitor_attribute/ccm_init.h @@ -21,7 +21,7 @@ class be_visitor_attribute_ccm_init { public: be_visitor_attribute_ccm_init (be_visitor_context *ctx); - ~be_visitor_attribute_ccm_init (void); + ~be_visitor_attribute_ccm_init (); virtual int visit_attribute (be_attribute *node); @@ -41,10 +41,10 @@ public: virtual int visit_valuetype (be_valuetype *node); private: - void emit_init_block (void); + void emit_init_block (); void emit_error (const char *); - void open_if_block (void); - void close_if_block (void); + void open_if_block (); + void close_if_block (); private: be_attribute *attr_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_attribute/set_from_extracted.h b/TAO/TAO_IDL/be_include/be_visitor_attribute/set_from_extracted.h index 3f8c1451e37..dbf36935d64 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_attribute/set_from_extracted.h +++ b/TAO/TAO_IDL/be_include/be_visitor_attribute/set_from_extracted.h @@ -23,7 +23,7 @@ class be_visitor_attribute_set_from_extracted { public: be_visitor_attribute_set_from_extracted (be_visitor_context *ctx); - virtual ~be_visitor_attribute_set_from_extracted (void); + virtual ~be_visitor_attribute_set_from_extracted (); virtual int visit_array (be_array *); virtual int visit_component (be_component *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_ccm_pre_proc.h b/TAO/TAO_IDL/be_include/be_visitor_ccm_pre_proc.h index e90a16bae17..16574898820 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_ccm_pre_proc.h +++ b/TAO/TAO_IDL/be_include/be_visitor_ccm_pre_proc.h @@ -36,7 +36,7 @@ class be_visitor_ccm_pre_proc : public be_visitor_component_scope public: be_visitor_ccm_pre_proc (be_visitor_context *ctx); - virtual ~be_visitor_ccm_pre_proc (void); + virtual ~be_visitor_ccm_pre_proc (); virtual int visit_root (be_root *node); virtual int visit_module (be_module *node); @@ -83,8 +83,8 @@ protected: // Utility functions to create and destroy the various things // needed by operations generated from CCM-related declarations. - int lookup_cookie (void); - int lookup_exceptions (void); + int lookup_cookie (); + int lookup_exceptions (); int lookup_one_exception (const char *name, be_exception *&result); @@ -130,7 +130,7 @@ protected: private: /// Generate a sendc_* receptacle for AMI4CCM. - int generate_ami4ccm_uses (void); + int generate_ami4ccm_uses (); }; #endif // TAO_BE_VISITOR_CCM_PRE_PROC_H diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component.h b/TAO/TAO_IDL/be_include/be_visitor_component/component.h index fc6a2ae7d11..5e3975cb5ac 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component.h @@ -28,7 +28,7 @@ class be_visitor_component : public be_visitor_interface public: be_visitor_component (be_visitor_context *ctx); - ~be_visitor_component (void); + ~be_visitor_component (); /// This is the only type of declaration a component may contain. virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_ex_base.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_ex_base.h index 78fb8a14329..829b63ccccb 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_ex_base.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_ex_base.h @@ -27,16 +27,16 @@ class be_visitor_component_ami_rh_ex_base // public: be_visitor_component_ami_rh_ex_base (be_visitor_context *ctx); - ~be_visitor_component_ami_rh_ex_base (void); + ~be_visitor_component_ami_rh_ex_base (); virtual int post_process (be_decl *node); protected: - void init (void); + void init (); void gen_excep_op (const char *prefix, be_decl *node, bool for_defn); - virtual void gen_op_body (void); + virtual void gen_op_body (); int gen_attr_op (be_attribute *node, bool for_defn); protected: diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_exh.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_exh.h index 37efdb86745..2ac3bf00095 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_exh.h @@ -31,7 +31,7 @@ class be_visitor_component_ami_rh_exh { public: be_visitor_component_ami_rh_exh (be_visitor_context *ctx); - ~be_visitor_component_ami_rh_exh (void); + ~be_visitor_component_ami_rh_exh (); virtual int visit_uses (be_uses *node); virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_exs.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_exs.h index 739153e57e0..73abcca2ec0 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_ami_rh_exs.h @@ -26,7 +26,7 @@ class be_visitor_component_ami_rh_exs { public: be_visitor_component_ami_rh_exs (be_visitor_context *ctx); - ~be_visitor_component_ami_rh_exs (void); + ~be_visitor_component_ami_rh_exs (); virtual int visit_uses (be_uses *node); virtual int visit_operation (be_operation *node); @@ -34,7 +34,7 @@ public: virtual int visit_argument (be_argument *node); private: - virtual void gen_op_body (void); + virtual void gen_op_body (); private: const char *your_code_here_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_ex_idl.h index 5dd4a88f38a..77b70d453b1 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_ex_idl.h @@ -26,7 +26,7 @@ class be_visitor_component_ex_idl : public be_visitor_decl public: be_visitor_component_ex_idl (be_visitor_context *ctx); - ~be_visitor_component_ex_idl (void); + ~be_visitor_component_ex_idl (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_exh.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_exh.h index 2021bc1e6ff..61c3b1f1485 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_exh.h @@ -24,7 +24,7 @@ class be_visitor_component_exh public: be_visitor_component_exh (be_visitor_context *ctx); - ~be_visitor_component_exh (void); + ~be_visitor_component_exh (); virtual int visit_component (be_component *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_exs.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_exs.h index fe7c1a0fb13..41a29abe673 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_exs.h @@ -24,7 +24,7 @@ class be_visitor_component_exs public: be_visitor_component_exs (be_visitor_context *ctx); - ~be_visitor_component_exs (void); + ~be_visitor_component_exs (); virtual int visit_component (be_component *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_svh.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_svh.h index 45afd4bc706..f81b2d6028c 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_svh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_svh.h @@ -25,7 +25,7 @@ class be_visitor_component_svh : public be_visitor_component public: be_visitor_component_svh (be_visitor_context *ctx); - ~be_visitor_component_svh (void); + ~be_visitor_component_svh (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_svs.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_svs.h index 0777596da3f..931064ae3f6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_svs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_svs.h @@ -26,7 +26,7 @@ class be_visitor_component_svs : public be_visitor_component public: be_visitor_component_svs (be_visitor_context *ctx); - ~be_visitor_component_svs (void); + ~be_visitor_component_svs (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_svth.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_svth.h index c0ddc17c692..fb020ceb515 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_svth.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_svth.h @@ -25,7 +25,7 @@ class be_visitor_component_svth : public be_visitor_component public: be_visitor_component_svth (be_visitor_context *ctx); - ~be_visitor_component_svth (void); + ~be_visitor_component_svth (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/component_svts.h b/TAO/TAO_IDL/be_include/be_visitor_component/component_svts.h index 0ece376fd87..778463cbb16 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/component_svts.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/component_svts.h @@ -26,7 +26,7 @@ class be_visitor_component_svts : public be_visitor_component public: be_visitor_component_svts (be_visitor_context *ctx); - ~be_visitor_component_svts (void); + ~be_visitor_component_svts (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/context_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_component/context_ex_idl.h index e4231f9943b..a534f6d12d9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/context_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/context_ex_idl.h @@ -23,7 +23,7 @@ class be_visitor_context_ex_idl public: be_visitor_context_ex_idl (be_visitor_context *ctx); - ~be_visitor_context_ex_idl (void); + ~be_visitor_context_ex_idl (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/context_svth.h b/TAO/TAO_IDL/be_include/be_visitor_component/context_svth.h index b3156428bb8..0b6f076c0e9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/context_svth.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/context_svth.h @@ -27,7 +27,7 @@ class be_visitor_context_svth : public be_visitor_component_scope public: be_visitor_context_svth (be_visitor_context *ctx); - ~be_visitor_context_svth (void); + ~be_visitor_context_svth (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/context_svts.h b/TAO/TAO_IDL/be_include/be_visitor_component/context_svts.h index 6feac150d01..853502b3bb2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/context_svts.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/context_svts.h @@ -27,7 +27,7 @@ class be_visitor_context_svts : public be_visitor_component_scope public: be_visitor_context_svts (be_visitor_context *ctx); - ~be_visitor_context_svts (void); + ~be_visitor_context_svts (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/executor_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_component/executor_ex_idl.h index c10c1d73d01..e23af8df907 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/executor_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/executor_ex_idl.h @@ -22,7 +22,7 @@ class be_visitor_executor_ex_idl public: be_visitor_executor_ex_idl (be_visitor_context *ctx); - ~be_visitor_executor_ex_idl (void); + ~be_visitor_executor_ex_idl (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); @@ -39,7 +39,7 @@ public: virtual int visit_consumes (be_consumes *node); private: - void gen_supported (void); + void gen_supported (); void gen_exception_list (UTL_ExceptList *exceptions, const char *prefix = "", bool closed = true); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/executor_exh.h b/TAO/TAO_IDL/be_include/be_visitor_component/executor_exh.h index 84ee7523a66..1cd0a6e29d6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/executor_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/executor_exh.h @@ -23,7 +23,7 @@ class be_visitor_executor_exh public: be_visitor_executor_exh (be_visitor_context *ctx); - ~be_visitor_executor_exh (void); + ~be_visitor_executor_exh (); virtual int visit_attribute (be_attribute *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/executor_exs.h b/TAO/TAO_IDL/be_include/be_visitor_component/executor_exs.h index a0298e2e982..114f5683ca8 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/executor_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/executor_exs.h @@ -23,7 +23,7 @@ class be_visitor_executor_exs public: be_visitor_executor_exs (be_visitor_context *ctx); - ~be_visitor_executor_exs (void); + ~be_visitor_executor_exs (); virtual int visit_operation (be_operation *node); virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/executor_exs_attr_init.h b/TAO/TAO_IDL/be_include/be_visitor_component/executor_exs_attr_init.h index 03bb5bd5045..4f0f18e75fe 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/executor_exs_attr_init.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/executor_exs_attr_init.h @@ -24,13 +24,13 @@ class be_visitor_executor_exs_attr_init { public: be_visitor_executor_exs_attr_init (be_visitor_context *ctx); - ~be_visitor_executor_exs_attr_init (void); + ~be_visitor_executor_exs_attr_init (); virtual int visit_attribute (be_attribute *node); virtual int pre_process (be_decl *); - bool attr_generated (void) const; + bool attr_generated () const; private: bool semicolon_generated_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/executor_private_exh.h b/TAO/TAO_IDL/be_include/be_visitor_component/executor_private_exh.h index da954b17b92..0db0f40a4db 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/executor_private_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/executor_private_exh.h @@ -24,7 +24,7 @@ class be_visitor_executor_private_exh public: be_visitor_executor_private_exh (be_visitor_context *ctx); - ~be_visitor_executor_private_exh (void); + ~be_visitor_executor_private_exh (); virtual int visit_provides (be_provides *node); virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/facet_exh.h b/TAO/TAO_IDL/be_include/be_visitor_component/facet_exh.h index 8a436a2f141..35ff340d2ea 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/facet_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/facet_exh.h @@ -22,7 +22,7 @@ class be_visitor_facet_exh public: be_visitor_facet_exh (be_visitor_context *ctx); - ~be_visitor_facet_exh (void); + ~be_visitor_facet_exh (); virtual int visit_provides (be_provides *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/facet_exs.h b/TAO/TAO_IDL/be_include/be_visitor_component/facet_exs.h index 54c1a9aaf2f..19afab63fd4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/facet_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/facet_exs.h @@ -23,7 +23,7 @@ class be_visitor_facet_exs public: be_visitor_facet_exs (be_visitor_context *ctx); - ~be_visitor_facet_exs (void); + ~be_visitor_facet_exs (); virtual int visit_operation (be_operation *node); virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/servant_svh.h b/TAO/TAO_IDL/be_include/be_visitor_component/servant_svh.h index f30c73b57ef..b9f017e416f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/servant_svh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/servant_svh.h @@ -27,7 +27,7 @@ class be_visitor_servant_svh : public be_visitor_component_scope public: be_visitor_servant_svh (be_visitor_context *ctx); - ~be_visitor_servant_svh (void); + ~be_visitor_servant_svh (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); @@ -40,7 +40,7 @@ public: private: /// Base class overrides and CIAO-specific code. - void gen_non_type_specific (void); + void gen_non_type_specific (); }; #endif /* _BE_COMPONENT_SERVANT_SVH_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_component/servant_svs.h b/TAO/TAO_IDL/be_include/be_visitor_component/servant_svs.h index 659ef708fb6..f9cac557f89 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component/servant_svs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component/servant_svs.h @@ -24,7 +24,7 @@ class be_visitor_servant_svs public: be_visitor_servant_svs (be_visitor_context *ctx); - ~be_visitor_servant_svs (void); + ~be_visitor_servant_svs (); virtual int visit_component (be_component *node); virtual int visit_connector (be_connector *node); @@ -37,15 +37,15 @@ public: virtual int visit_consumes (be_consumes *node); private: - void gen_provides_top (void); - void gen_uses_top (void); - void gen_publishes_top (void); - void gen_emits_top (void); + void gen_provides_top (); + void gen_uses_top (); + void gen_publishes_top (); + void gen_emits_top (); /// This method gets generated (unless we are /// generating the LwCCM profile) whether the /// comonent has any emitters or not. - void gen_get_all_emitters (void); + void gen_get_all_emitters (); private: be_interface *op_scope_; @@ -59,7 +59,7 @@ class be_visitor_obv_factory_reg public: be_visitor_obv_factory_reg (be_visitor_context *ctx); - ~be_visitor_obv_factory_reg (void); + ~be_visitor_obv_factory_reg (); virtual int visit_publishes (be_publishes *node); virtual int visit_emits (be_emits *node); @@ -76,7 +76,7 @@ class be_visitor_attr_set : public be_visitor_component_scope public: be_visitor_attr_set (be_visitor_context *ctx); - ~be_visitor_attr_set (void); + ~be_visitor_attr_set (); virtual int visit_attribute (be_attribute *node); @@ -94,7 +94,7 @@ class be_visitor_facet_executor_block public: be_visitor_facet_executor_block (be_visitor_context *ctx); - ~be_visitor_facet_executor_block (void); + ~be_visitor_facet_executor_block (); virtual int visit_provides (be_provides *node); }; @@ -107,7 +107,7 @@ class be_visitor_connect_block public: be_visitor_connect_block (be_visitor_context *ctx); - ~be_visitor_connect_block (void); + ~be_visitor_connect_block (); virtual int visit_uses (be_uses *node); }; @@ -120,7 +120,7 @@ class be_visitor_disconnect_block public: be_visitor_disconnect_block (be_visitor_context *ctx); - ~be_visitor_disconnect_block (void); + ~be_visitor_disconnect_block (); virtual int visit_uses (be_uses *node); }; @@ -134,7 +134,7 @@ public: be_visitor_receptacle_desc (be_visitor_context *ctx, be_component *node); - ~be_visitor_receptacle_desc (void); + ~be_visitor_receptacle_desc (); virtual int visit_uses (be_uses *node); @@ -151,7 +151,7 @@ class be_visitor_subscribe_block public: be_visitor_subscribe_block (be_visitor_context *ctx); - ~be_visitor_subscribe_block (void); + ~be_visitor_subscribe_block (); virtual int visit_publishes (be_publishes *node); }; @@ -164,7 +164,7 @@ class be_visitor_unsubscribe_block public: be_visitor_unsubscribe_block (be_visitor_context *ctx); - ~be_visitor_unsubscribe_block (void); + ~be_visitor_unsubscribe_block (); virtual int visit_publishes (be_publishes *node); }; @@ -177,7 +177,7 @@ class be_visitor_event_source_desc public: be_visitor_event_source_desc (be_visitor_context *ctx); - ~be_visitor_event_source_desc (void); + ~be_visitor_event_source_desc (); virtual int visit_publishes (be_publishes *node); @@ -193,7 +193,7 @@ class be_visitor_connect_consumer_block public: be_visitor_connect_consumer_block (be_visitor_context *ctx); - ~be_visitor_connect_consumer_block (void); + ~be_visitor_connect_consumer_block (); virtual int visit_emits (be_emits *node); }; @@ -206,7 +206,7 @@ class be_visitor_disconnect_consumer_block public: be_visitor_disconnect_consumer_block (be_visitor_context *ctx); - ~be_visitor_disconnect_consumer_block (void); + ~be_visitor_disconnect_consumer_block (); virtual int visit_emits (be_emits *node); }; @@ -219,7 +219,7 @@ class be_visitor_emitter_desc public: be_visitor_emitter_desc (be_visitor_context *ctx); - ~be_visitor_emitter_desc (void); + ~be_visitor_emitter_desc (); virtual int visit_emits (be_emits *node); @@ -235,7 +235,7 @@ class be_visitor_populate_port_tables public: be_visitor_populate_port_tables (be_visitor_context *ctx); - ~be_visitor_populate_port_tables (void); + ~be_visitor_populate_port_tables (); virtual int visit_provides (be_provides *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component_fwd/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_component_fwd/any_op_ch.h index afc73f9840b..7aa27cfb24a 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component_fwd/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component_fwd/any_op_ch.h @@ -30,7 +30,7 @@ public: be_visitor_component_fwd_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_component_fwd_any_op_ch (void); + ~be_visitor_component_fwd_any_op_ch (); /// visit component_fwd virtual int visit_component_fwd (be_component_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component_fwd/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_component_fwd/cdr_op_ch.h index 85d1bb87ed8..69b53aaefe0 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component_fwd/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component_fwd/cdr_op_ch.h @@ -32,7 +32,7 @@ public: be_visitor_component_fwd_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_component_fwd_cdr_op_ch (void); + ~be_visitor_component_fwd_cdr_op_ch (); /// visit forward declared component. virtual int visit_component_fwd (be_component_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h b/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h index f5c9d15989c..1d7ef30f688 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component_fwd/component_fwd_ch.h @@ -28,7 +28,7 @@ public: be_visitor_component_fwd_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_component_fwd_ch (void); + ~be_visitor_component_fwd_ch (); /// visit interface_fwd. virtual int visit_component_fwd (be_component_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_component_scope.h b/TAO/TAO_IDL/be_include/be_visitor_component_scope.h index 476efb13582..a41c1e25a8f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_component_scope.h +++ b/TAO/TAO_IDL/be_include/be_visitor_component_scope.h @@ -30,7 +30,7 @@ class be_visitor_component_scope : public be_visitor_scope protected: be_visitor_component_scope (be_visitor_context *ctx); - virtual ~be_visitor_component_scope (void); + virtual ~be_visitor_component_scope (); public: virtual int visit_extended_port (be_extended_port *node); @@ -52,10 +52,10 @@ public: void node (be_component *c); protected: - void gen_svnt_entrypoint_decl (void); - void gen_svnt_entrypoint_defn (void); - void gen_exec_entrypoint_decl (void); - void gen_exec_entrypoint_defn (void); + void gen_svnt_entrypoint_decl (); + void gen_svnt_entrypoint_defn (); + void gen_exec_entrypoint_decl (); + void gen_exec_entrypoint_defn (); protected: be_component *node_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_ami_exh.h b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_ami_exh.h index 7602b12b8d1..1e2ed19a3b2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_ami_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_ami_exh.h @@ -31,12 +31,12 @@ class be_visitor_connector_ami_exh public: be_visitor_connector_ami_exh (be_visitor_context *ctx); - ~be_visitor_connector_ami_exh (void); + ~be_visitor_connector_ami_exh (); virtual int visit_connector (be_connector *node); private: - void gen_entrypoint (void); + void gen_entrypoint (); }; #endif /* _BE_CONNECTOR_CONNECTOR_AMI_EXH_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_ami_exs.h b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_ami_exs.h index f7da2c466ae..c83d58cdca7 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_ami_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_ami_exs.h @@ -32,12 +32,12 @@ class be_visitor_connector_ami_exs public: be_visitor_connector_ami_exs (be_visitor_context *ctx); - ~be_visitor_connector_ami_exs (void); + ~be_visitor_connector_ami_exs (); virtual int visit_connector (be_connector *node); private: - void gen_entrypoint (void); + void gen_entrypoint (); }; #endif /* _BE_CONNECTOR_CONNECTOR_AMI_EXS_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_ex_base.h b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_ex_base.h index a59c934d354..f26f839bbb8 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_ex_base.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_ex_base.h @@ -31,7 +31,7 @@ class be_visitor_connector_dds_ex_base public: be_visitor_connector_dds_ex_base (be_visitor_context *ctx); - ~be_visitor_connector_dds_ex_base (void); + ~be_visitor_connector_dds_ex_base (); protected: bool begin (be_connector *node); @@ -53,7 +53,7 @@ protected: private: void process_template_args (AST_Connector *node); - void match_template_args (void); + void match_template_args (); }; #endif /* _BE_CONNECTOR_CONNECTOR_DDS_EX_BASE_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_exh.h b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_exh.h index 292a965fb15..b1ea70cbc72 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_exh.h @@ -31,7 +31,7 @@ class be_visitor_connector_dds_exh public: be_visitor_connector_dds_exh (be_visitor_context *ctx); - ~be_visitor_connector_dds_exh (void); + ~be_visitor_connector_dds_exh (); virtual int visit_connector (be_connector *node); @@ -47,7 +47,7 @@ private: /// Generate application-specific instantiations of /// middleware templates containing traits constructs. void gen_dds_traits (AST_Decl *datatype); - void gen_connector_traits (void); + void gen_connector_traits (); /// Common code triggered by provides and uses ports. void gen_interface_connector_trait (be_interface *iface, diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_exs.h b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_exs.h index 6b96a075509..78d220fa63d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/connector_dds_exs.h @@ -29,7 +29,7 @@ class be_visitor_connector_dds_exs public: be_visitor_connector_dds_exs (be_visitor_context *ctx); - ~be_visitor_connector_dds_exs (void); + ~be_visitor_connector_dds_exs (); virtual int visit_connector (be_connector *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/executor_ami_exh.h b/TAO/TAO_IDL/be_include/be_visitor_connector/executor_ami_exh.h index 7790f43bd33..fa00e192e4b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/executor_ami_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/executor_ami_exh.h @@ -29,7 +29,7 @@ class be_visitor_executor_ami_exh public: be_visitor_executor_ami_exh (be_visitor_context *ctx); - ~be_visitor_executor_ami_exh (void); + ~be_visitor_executor_ami_exh (); virtual int visit_connector (be_connector *node); virtual int visit_provides (be_provides *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/executor_ami_exs.h b/TAO/TAO_IDL/be_include/be_visitor_connector/executor_ami_exs.h index 481e06f9eda..f831e4d8169 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/executor_ami_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/executor_ami_exs.h @@ -29,7 +29,7 @@ class be_visitor_executor_ami_exs public: be_visitor_executor_ami_exs (be_visitor_context *ctx); - ~be_visitor_executor_ami_exs (void); + ~be_visitor_executor_ami_exs (); virtual int visit_connector (be_connector *node); virtual int visit_provides (be_provides *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/facet_ami_exh.h b/TAO/TAO_IDL/be_include/be_visitor_connector/facet_ami_exh.h index 94b8e8a0dd0..67445f55335 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/facet_ami_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/facet_ami_exh.h @@ -28,7 +28,7 @@ class be_visitor_facet_ami_exh public: be_visitor_facet_ami_exh (be_visitor_context *ctx); - ~be_visitor_facet_ami_exh (void); + ~be_visitor_facet_ami_exh (); virtual int visit_component (be_component *node); virtual int visit_provides (be_provides *node); @@ -49,8 +49,8 @@ protected: bool sync_; private: - int gen_reply_handler_class (void); - int gen_facet_executor_class (void); + int gen_reply_handler_class (); + int gen_facet_executor_class (); }; //============================================================== diff --git a/TAO/TAO_IDL/be_include/be_visitor_connector/facet_ami_exs.h b/TAO/TAO_IDL/be_include/be_visitor_connector/facet_ami_exs.h index cf98aa0efcd..d102e3ed6ab 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_connector/facet_ami_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_connector/facet_ami_exs.h @@ -28,7 +28,7 @@ class be_visitor_facet_ami_exs public: be_visitor_facet_ami_exs (be_visitor_context *ctx); - ~be_visitor_facet_ami_exs (void); + ~be_visitor_facet_ami_exs (); virtual int visit_component (be_component *node); virtual int visit_provides (be_provides *node); @@ -39,9 +39,9 @@ public: virtual int post_process (be_decl *node); private: - void init (void); - int gen_reply_handler_class (void); - int gen_facet_executor_class (void); + void init (); + int gen_reply_handler_class (); + int gen_facet_executor_class (); int gen_reply_hander_op (be_operation *node); int gen_facet_executor_op (be_operation *node); int gen_facet_executor_sync_op (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_constant/constant_ch.h b/TAO/TAO_IDL/be_include/be_visitor_constant/constant_ch.h index f5575874d3a..49dab12db86 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_constant/constant_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_constant/constant_ch.h @@ -28,7 +28,7 @@ public: be_visitor_constant_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_constant_ch (void); + ~be_visitor_constant_ch (); /// visit constant. virtual int visit_constant (be_constant *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_constant/constant_cs.h b/TAO/TAO_IDL/be_include/be_visitor_constant/constant_cs.h index 342286a8510..4979beab82e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_constant/constant_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_constant/constant_cs.h @@ -28,7 +28,7 @@ public: be_visitor_constant_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_constant_cs (void); + ~be_visitor_constant_cs (); /// visit constant virtual int visit_constant (be_constant *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_context.h b/TAO/TAO_IDL/be_include/be_visitor_context.h index 0951b14fbda..4fe7d901355 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_context.h +++ b/TAO/TAO_IDL/be_include/be_visitor_context.h @@ -40,13 +40,13 @@ class be_visitor_context : public ast_visitor_context { public: /// default constructor - be_visitor_context (void); + be_visitor_context (); /// default constructor be_visitor_context (const be_visitor_context &ctx); /// destructor - ~be_visitor_context (void); + ~be_visitor_context (); /// assignment operator be_visitor_context &operator= (const be_visitor_context &ctx); @@ -54,67 +54,67 @@ public: // =helpers /// reset the context - void reset (void); + void reset (); /// set the output stream void stream (TAO_OutStream *os); /// get the stream - TAO_OutStream *stream (void); + TAO_OutStream *stream (); /// set the scope void scope (be_scope *scope); /// get the scope in which code will be generated - be_scope *scope (void); + be_scope *scope (); /// current node being visited void node (be_decl *node); /// node being visited - be_decl *node (void); + be_decl *node (); /// code generation state void state (TAO_CodeGen::CG_STATE); /// return the code generation state - TAO_CodeGen::CG_STATE state (void); + TAO_CodeGen::CG_STATE state (); /// code generation state void sub_state (TAO_CodeGen::CG_SUB_STATE); /// return the code generation state - TAO_CodeGen::CG_SUB_STATE sub_state (void); + TAO_CodeGen::CG_SUB_STATE sub_state (); /// set the alias node (if any) void alias (be_typedef *node); /// return the aliased node (if any) - be_typedef *alias (void); + be_typedef *alias (); /// set the typedef node (if any) void tdef (be_typedef *node); /// return the typedef node (if any) - be_typedef *tdef (void); + be_typedef *tdef (); /// set the attribute node if any void attribute (be_attribute *attr); /// get the attribute node - be_attribute *attribute (void); + be_attribute *attribute (); /// is it the special ctor for exceptions? void exception (bool); /// is it the special ctor for exceptions? - bool exception (void); + bool exception (); /// scope supoorts generation of comma after each element void comma (bool); /// are we supposed to generate a comma? - bool comma (void); + bool comma (); /** * In some cases we need to generate the objects of one interface as @@ -123,17 +123,17 @@ public: * *generating* code, as opposed to the interfaces where the methods * or structures are defined. */ - be_interface *interface (void) const; + be_interface *interface () const; void interface (be_interface *); /// Accessor for the member. - ACE_CString &port_prefix (void); + ACE_CString &port_prefix (); /// return the export macro currently in force - const char *export_macro (void) const; + const char *export_macro () const; /// if anyop export macro is empty, check stub. - const char *non_null_export_macro (void) const; + const char *non_null_export_macro () const; private: /// code generation state diff --git a/TAO/TAO_IDL/be_include/be_visitor_dds_ts_idl.h b/TAO/TAO_IDL/be_include/be_visitor_dds_ts_idl.h index ca41373b041..03184b0fb39 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_dds_ts_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_dds_ts_idl.h @@ -29,7 +29,7 @@ class be_visitor_dds_ts_idl : public be_visitor_scope public: be_visitor_dds_ts_idl (be_visitor_context *ctx); - ~be_visitor_dds_ts_idl (void); + ~be_visitor_dds_ts_idl (); virtual int visit_root (be_root *node); virtual int visit_module (be_module *node); @@ -46,8 +46,8 @@ private: void gen_datareader (be_type *node); /// Manage streams and files. - int init_file (void); - void fini_file (void); + int init_file (); + void fini_file (); private: TAO_OutStream *os_ptr_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_decl.h b/TAO/TAO_IDL/be_include/be_visitor_decl.h index 266e0376fae..cde8ecb37ef 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_decl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_decl.h @@ -29,9 +29,9 @@ class be_visitor_decl : public be_visitor public: be_visitor_decl (be_visitor_context *ctx); - ~be_visitor_decl (void); + ~be_visitor_decl (); - be_visitor_context *ctx (void); + be_visitor_context *ctx (); protected: /// Any context information required by the visitor. diff --git a/TAO/TAO_IDL/be_include/be_visitor_enum/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_enum/any_op_ch.h index 610382298d1..a5d46ffa8a7 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_enum/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_enum/any_op_ch.h @@ -30,7 +30,7 @@ public: be_visitor_enum_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_enum_any_op_ch (void); + ~be_visitor_enum_any_op_ch (); /// visit enum virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_enum/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_enum/any_op_cs.h index 7f813cbfb5b..4fd3d8f6e4b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_enum/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_enum/any_op_cs.h @@ -30,7 +30,7 @@ public: be_visitor_enum_any_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_enum_any_op_cs (void); + ~be_visitor_enum_any_op_cs (); /// visit enum virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_enum/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_enum/cdr_op_ch.h index bc2240a1b91..07e4f1b9609 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_enum/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_enum/cdr_op_ch.h @@ -30,7 +30,7 @@ public: be_visitor_enum_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_enum_cdr_op_ch (void); + ~be_visitor_enum_cdr_op_ch (); /// visit enum virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_enum/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_enum/cdr_op_cs.h index adcba1de635..c7a39686789 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_enum/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_enum/cdr_op_cs.h @@ -30,7 +30,7 @@ public: be_visitor_enum_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_enum_cdr_op_cs (void); + ~be_visitor_enum_cdr_op_cs (); /// visit enum virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_enum/enum_ch.h b/TAO/TAO_IDL/be_include/be_visitor_enum/enum_ch.h index e353754e3d1..c1514b5f712 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_enum/enum_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_enum/enum_ch.h @@ -28,7 +28,7 @@ public: be_visitor_enum_ch (be_visitor_context *ctx); /// deenumor - ~be_visitor_enum_ch (void); + ~be_visitor_enum_ch (); /// visit enum. virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_enum/enum_cs.h b/TAO/TAO_IDL/be_include/be_visitor_enum/enum_cs.h index d77ed23332b..dcb06a90627 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_enum/enum_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_enum/enum_cs.h @@ -28,7 +28,7 @@ public: be_visitor_enum_cs (be_visitor_context *ctx); /// deenumor - ~be_visitor_enum_cs (void); + ~be_visitor_enum_cs (); /// visit enum and generate the typecode virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_exception/any_op_ch.h index 262455138f7..e49da61f6f9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/any_op_ch.h @@ -27,7 +27,7 @@ class be_visitor_exception_any_op_ch : public be_visitor_scope public: be_visitor_exception_any_op_ch (be_visitor_context *ctx); - ~be_visitor_exception_any_op_ch (void); + ~be_visitor_exception_any_op_ch (); virtual int visit_exception (be_exception *node); virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_exception/any_op_cs.h index d188a3115e5..4a252adef3d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/any_op_cs.h @@ -27,7 +27,7 @@ class be_visitor_exception_any_op_cs : public be_visitor_scope public: be_visitor_exception_any_op_cs (be_visitor_context *ctx); - ~be_visitor_exception_any_op_cs (void); + ~be_visitor_exception_any_op_cs (); virtual int visit_exception (be_exception *node); virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_exception/cdr_op_ch.h index d8b357042af..462beb7214b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/cdr_op_ch.h @@ -28,7 +28,7 @@ class be_visitor_exception_cdr_op_ch : public be_visitor_exception public: be_visitor_exception_cdr_op_ch (be_visitor_context *ctx); - ~be_visitor_exception_cdr_op_ch (void); + ~be_visitor_exception_cdr_op_ch (); virtual int visit_exception (be_exception *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_exception/cdr_op_cs.h index b579bf99e2d..ed86886f347 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/cdr_op_cs.h @@ -28,7 +28,7 @@ class be_visitor_exception_cdr_op_cs : public be_visitor_exception public: be_visitor_exception_cdr_op_cs (be_visitor_context *ctx); - ~be_visitor_exception_cdr_op_cs (void); + ~be_visitor_exception_cdr_op_cs (); virtual int visit_exception (be_exception *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/ctor.h b/TAO/TAO_IDL/be_include/be_visitor_exception/ctor.h index ea9600d63d0..e7f10cd0346 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/ctor.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/ctor.h @@ -24,7 +24,7 @@ class be_visitor_exception_ctor : public be_visitor_scope { public: be_visitor_exception_ctor (be_visitor_context *ctx); - ~be_visitor_exception_ctor (void); + ~be_visitor_exception_ctor (); virtual int post_process (be_decl *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/ctor_assign.h b/TAO/TAO_IDL/be_include/be_visitor_exception/ctor_assign.h index 53c633473d6..17e7f4914a4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/ctor_assign.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/ctor_assign.h @@ -24,7 +24,7 @@ class be_visitor_exception_ctor_assign : public be_visitor_scope { public: be_visitor_exception_ctor_assign (be_visitor_context *ctx); - ~be_visitor_exception_ctor_assign (void); + ~be_visitor_exception_ctor_assign (); virtual int visit_exception (be_exception *node); virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/exception.h b/TAO/TAO_IDL/be_include/be_visitor_exception/exception.h index ee30eaa1aba..22c13ddfa7b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/exception.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/exception.h @@ -25,7 +25,7 @@ class be_visitor_exception : public be_visitor_scope { public: be_visitor_exception (be_visitor_context *ctx); - ~be_visitor_exception (void); + ~be_visitor_exception (); virtual int visit_exception (be_exception *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ch.h b/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ch.h index 5bda48fbaec..063bb0a90ee 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ch.h @@ -25,7 +25,7 @@ class be_visitor_exception_ch : public be_visitor_exception { public: be_visitor_exception_ch (be_visitor_context *ctx); - ~be_visitor_exception_ch (void); + ~be_visitor_exception_ch (); virtual int visit_exception (be_exception *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ci.h b/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ci.h index b73dfa93fff..a07e9017cd3 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/exception_ci.h @@ -25,7 +25,7 @@ class be_visitor_exception_ci : public be_visitor_exception { public: be_visitor_exception_ci (be_visitor_context *ctx); - ~be_visitor_exception_ci (void); + ~be_visitor_exception_ci (); virtual int visit_exception (be_exception *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_exception/exception_cs.h b/TAO/TAO_IDL/be_include/be_visitor_exception/exception_cs.h index 3bd79bb082f..97a5b221517 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_exception/exception_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_exception/exception_cs.h @@ -25,7 +25,7 @@ class be_visitor_exception_cs : public be_visitor_exception { public: be_visitor_exception_cs (be_visitor_context *ctx); - ~be_visitor_exception_cs (void); + ~be_visitor_exception_cs (); virtual int visit_exception (be_exception *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_field/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_field/cdr_op_ch.h index edcfb760650..04fb0dc86fe 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_field/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_field/cdr_op_ch.h @@ -25,7 +25,7 @@ class be_visitor_field_cdr_op_ch : public be_visitor_decl { public: be_visitor_field_cdr_op_ch (be_visitor_context *ctx); - ~be_visitor_field_cdr_op_ch (void); + ~be_visitor_field_cdr_op_ch (); virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_field/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_field/cdr_op_cs.h index 37a6ffd93eb..ee844d8c9dd 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_field/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_field/cdr_op_cs.h @@ -24,7 +24,7 @@ class be_visitor_field_cdr_op_cs : public be_visitor_decl { public: be_visitor_field_cdr_op_cs (be_visitor_context *ctx); - ~be_visitor_field_cdr_op_cs (void); + ~be_visitor_field_cdr_op_cs (); /// visit the field node virtual int visit_field (be_field *node); @@ -52,7 +52,7 @@ public: virtual int visit_union_fwd (be_union_fwd *node); private: - int emit_valuetype_common (void); + int emit_valuetype_common (); }; /** diff --git a/TAO/TAO_IDL/be_include/be_visitor_field/field_ch.h b/TAO/TAO_IDL/be_include/be_visitor_field/field_ch.h index 3078353f8a9..2145b282203 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_field/field_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_field/field_ch.h @@ -24,7 +24,7 @@ class be_visitor_field_ch : public be_visitor_decl { public: be_visitor_field_ch (be_visitor_context *ctx); - ~be_visitor_field_ch (void); + ~be_visitor_field_ch (); virtual int visit_field (be_field *node); virtual int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_field/field_ci.h b/TAO/TAO_IDL/be_include/be_visitor_field/field_ci.h index a32d5d3b165..dd22e9f1682 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_field/field_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_field/field_ci.h @@ -25,7 +25,7 @@ class be_visitor_field_ci : public be_visitor_decl { public: be_visitor_field_ci (be_visitor_context *ctx); - ~be_visitor_field_ci (void); + ~be_visitor_field_ci (); virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_field/field_cs.h b/TAO/TAO_IDL/be_include/be_visitor_field/field_cs.h index 4c3768040dd..533b0a28dcd 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_field/field_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_field/field_cs.h @@ -25,7 +25,7 @@ class be_visitor_field_cs : public be_visitor_decl { public: be_visitor_field_cs (be_visitor_context *ctx); - ~be_visitor_field_cs (void); + ~be_visitor_field_cs (); virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_home/home_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_home/home_ex_idl.h index 67793591bf4..cf49e324489 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_home/home_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_home/home_ex_idl.h @@ -27,7 +27,7 @@ class be_visitor_home_ex_idl : public be_visitor_scope public: be_visitor_home_ex_idl (be_visitor_context *ctx); - ~be_visitor_home_ex_idl (void); + ~be_visitor_home_ex_idl (); virtual int visit_home (be_home *node); @@ -42,24 +42,24 @@ public: virtual int visit_string (be_string *node); private: - void gen_implicit (void); - void gen_explicit (void); - void gen_derived (void); + void gen_implicit (); + void gen_explicit (); + void gen_derived (); - void gen_supported (void); + void gen_supported (); void gen_exception_list (UTL_ExceptList *exceptions, const char *prefix = "", bool init_op = false); - void gen_home_executor (void); + void gen_home_executor (); /// The CCM preproc visitor changed the scoped name and the /// defined_in() for the home's members to the implied /// *Explicit interface, which isn't a problem unless /// they include exceptions raised by a contained operation. /// factory or finder. So we restore the members just in case. - void restore_scope (void); + void restore_scope (); private: be_home *node_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_home/home_exh.h b/TAO/TAO_IDL/be_include/be_visitor_home/home_exh.h index e5d1f190b25..4ac2060e25f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_home/home_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_home/home_exh.h @@ -27,7 +27,7 @@ class be_visitor_home_exh : public be_visitor_scope public: be_visitor_home_exh (be_visitor_context *ctx); - ~be_visitor_home_exh (void); + ~be_visitor_home_exh (); virtual int visit_home (be_home *node); virtual int visit_operation (be_operation *node); @@ -41,9 +41,9 @@ public: TAO_OutStream *); private: - int gen_exec_class (void); + int gen_exec_class (); - void gen_entrypoint (void); + void gen_entrypoint (); private: be_home *node_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_home/home_exs.h b/TAO/TAO_IDL/be_include/be_visitor_home/home_exs.h index 5dd74ec96e7..a5bc812e282 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_home/home_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_home/home_exs.h @@ -27,7 +27,7 @@ class be_visitor_home_exs : public be_visitor_scope public: be_visitor_home_exs (be_visitor_context *ctx); - ~be_visitor_home_exs (void); + ~be_visitor_home_exs (); virtual int visit_home (be_home *node); virtual int visit_operation (be_operation *node); @@ -35,9 +35,9 @@ public: virtual int visit_factory (be_factory *node); private: - int gen_exec_class (void); + int gen_exec_class (); - void gen_entrypoint (void); + void gen_entrypoint (); private: be_home *node_; diff --git a/TAO/TAO_IDL/be_include/be_visitor_home/home_svh.h b/TAO/TAO_IDL/be_include/be_visitor_home/home_svh.h index 2bedc2de3bc..4feaa55bdc1 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_home/home_svh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_home/home_svh.h @@ -26,7 +26,7 @@ class be_visitor_home_svh : public be_visitor_scope public: be_visitor_home_svh (be_visitor_context *ctx); - ~be_visitor_home_svh (void); + ~be_visitor_home_svh (); virtual int visit_home (be_home *node); virtual int visit_operation (be_operation *node); @@ -35,9 +35,9 @@ public: virtual int visit_finder (be_finder *node); private: - int gen_servant_class (void); + int gen_servant_class (); - void gen_entrypoint (void); + void gen_entrypoint (); /// Helper method passed to traverse_inheritance_graph(), /// collects supported operations and attributes. diff --git a/TAO/TAO_IDL/be_include/be_visitor_home/home_svs.h b/TAO/TAO_IDL/be_include/be_visitor_home/home_svs.h index 8709485991d..8da752963f6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_home/home_svs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_home/home_svs.h @@ -26,7 +26,7 @@ class be_visitor_home_svs : public be_visitor_scope public: be_visitor_home_svs (be_visitor_context *ctx); - ~be_visitor_home_svs (void); + ~be_visitor_home_svs (); virtual int visit_home (be_home *node); virtual int visit_operation (be_operation *node); @@ -36,9 +36,9 @@ public: virtual int visit_finder (be_finder *node); private: - int gen_servant_class (void); + int gen_servant_class (); - void gen_entrypoint (void); + void gen_entrypoint (); private: be_home *node_; @@ -69,7 +69,7 @@ class be_visitor_home_attr_set : public be_visitor_decl public: be_visitor_home_attr_set (be_visitor_context *ctx); - ~be_visitor_home_attr_set (void); + ~be_visitor_home_attr_set (); virtual int visit_home (be_home *node); virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h index 3571db50638..6fbaa310ad3 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h @@ -30,7 +30,7 @@ public: be_visitor_amh_interface_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_amh_interface_ch (void); + ~be_visitor_amh_interface_ch (); /// set the right context and make a visitor virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_rh_sh.h b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_rh_sh.h index 49a7b0b011a..f0b65056463 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_rh_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_rh_sh.h @@ -15,11 +15,11 @@ class be_visitor_amh_rh_interface_sh : public be_visitor_interface_sh { public: - be_visitor_amh_rh_interface_sh (void); + be_visitor_amh_rh_interface_sh (); be_visitor_amh_rh_interface_sh (be_visitor_context *ctx); - ~be_visitor_amh_rh_interface_sh (void); + ~be_visitor_amh_rh_interface_sh (); virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_rh_ss.h b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_rh_ss.h index efb6bfe1e69..bdb2fe50e54 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_rh_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_rh_ss.h @@ -22,7 +22,7 @@ public: int visit_operation (be_operation *node); - ~be_visitor_amh_rh_interface_ss (void); + ~be_visitor_amh_rh_interface_ss (); }; #endif /* AMH_RH_INTERFACE_SS_H */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_sh.h b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_sh.h index 733c8f1de0d..9af9fd2202c 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_sh.h @@ -15,7 +15,7 @@ class be_visitor_amh_interface_sh : public be_visitor_interface_sh { public: be_visitor_amh_interface_sh (be_visitor_context *ctx); - ~be_visitor_amh_interface_sh (void); + ~be_visitor_amh_interface_sh (); int visit_interface (be_interface *node); int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ss.h b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ss.h index 238db0bb5b6..c0b9beac332 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ss.h @@ -23,7 +23,7 @@ public: int visit_operation (be_operation *node); int visit_attribute (be_attribute *node); - ~be_visitor_amh_interface_ss (void); + ~be_visitor_amh_interface_ss (); protected: virtual void this_method (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_conn_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_conn_ex_idl.h index db2bb9bde6e..a7a2d9fe2c5 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_conn_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_conn_ex_idl.h @@ -26,7 +26,7 @@ class be_visitor_ami4ccm_conn_ex_idl : public be_visitor_scope public: be_visitor_ami4ccm_conn_ex_idl (be_visitor_context *ctx); - ~be_visitor_ami4ccm_conn_ex_idl (void); + ~be_visitor_ami4ccm_conn_ex_idl (); virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_rh_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_rh_ex_idl.h index c3a7693c802..636e9e73e88 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_rh_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_rh_ex_idl.h @@ -26,7 +26,7 @@ class be_visitor_ami4ccm_rh_ex_idl : public be_visitor_scope public: be_visitor_ami4ccm_rh_ex_idl (be_visitor_context *ctx); - ~be_visitor_ami4ccm_rh_ex_idl (void); + ~be_visitor_ami4ccm_rh_ex_idl (); virtual int visit_interface (be_interface *node); virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_sendc_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_sendc_ex_idl.h index ccc9102d7a2..b26192722ba 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_sendc_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/ami4ccm_sendc_ex_idl.h @@ -26,7 +26,7 @@ class be_visitor_ami4ccm_sendc_ex_idl : public be_visitor_scope public: be_visitor_ami4ccm_sendc_ex_idl (be_visitor_context *ctx); - ~be_visitor_ami4ccm_sendc_ex_idl (void); + ~be_visitor_ami4ccm_sendc_ex_idl (); virtual int visit_interface (be_interface *node); virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface/any_op_ch.h index cf1eee4b14a..14423fd2e60 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/any_op_ch.h @@ -26,7 +26,7 @@ class be_visitor_interface_any_op_ch : public be_visitor_interface public: be_visitor_interface_any_op_ch (be_visitor_context *ctx); - ~be_visitor_interface_any_op_ch (void); + ~be_visitor_interface_any_op_ch (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_interface/any_op_cs.h index 7409ce3a65d..47ba221489f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/any_op_cs.h @@ -26,7 +26,7 @@ class be_visitor_interface_any_op_cs : public be_visitor_interface public: be_visitor_interface_any_op_cs (be_visitor_context *ctx); - ~be_visitor_interface_any_op_cs (void); + ~be_visitor_interface_any_op_cs (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface/cdr_op_ch.h index 00a49c87100..478b6d191f9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/cdr_op_ch.h @@ -28,7 +28,7 @@ class be_visitor_interface_cdr_op_ch : public be_visitor_interface public: be_visitor_interface_cdr_op_ch (be_visitor_context *ctx); - ~be_visitor_interface_cdr_op_ch (void); + ~be_visitor_interface_cdr_op_ch (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_interface/cdr_op_cs.h index e95dd50c04a..79f212abee7 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/cdr_op_cs.h @@ -28,7 +28,7 @@ class be_visitor_interface_cdr_op_cs : public be_visitor_interface public: be_visitor_interface_cdr_op_cs (be_visitor_context *ctx); - ~be_visitor_interface_cdr_op_cs (void); + ~be_visitor_interface_cdr_op_cs (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h b/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h index 6f8ab960b6b..1b10d9ab9d4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_sh.h @@ -27,7 +27,7 @@ public: // -- Ctor/Dtor Decl. -- be_visitor_interface_direct_proxy_impl_sh (be_visitor_context *ctx); - virtual ~be_visitor_interface_direct_proxy_impl_sh (void); + virtual ~be_visitor_interface_direct_proxy_impl_sh (); /// visit an interface virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_ss.h b/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_ss.h index 1d298c1a2e5..cf818e8a44b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/direct_proxy_impl_ss.h @@ -26,7 +26,7 @@ public: // -- Ctor/Dtor Decl. -- be_visitor_interface_direct_proxy_impl_ss (be_visitor_context *ctx); - virtual ~be_visitor_interface_direct_proxy_impl_ss (void); + virtual ~be_visitor_interface_direct_proxy_impl_ss (); /// visit an interface virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/facet_svth.h b/TAO/TAO_IDL/be_include/be_visitor_interface/facet_svth.h index 679951ebead..b3f0d0ae183 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/facet_svth.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/facet_svth.h @@ -27,7 +27,7 @@ class be_visitor_facet_svth : public be_visitor_interface public: be_visitor_facet_svth (be_visitor_context *ctx); - ~be_visitor_facet_svth (void); + ~be_visitor_facet_svth (); virtual int visit_interface (be_interface *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/facet_svts.h b/TAO/TAO_IDL/be_include/be_visitor_interface/facet_svts.h index 7e8f26614d6..4fe718c369c 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/facet_svts.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/facet_svts.h @@ -27,7 +27,7 @@ class be_visitor_facet_svts : public be_visitor_interface public: be_visitor_facet_svts (be_visitor_context *ctx); - ~be_visitor_facet_svts (void); + ~be_visitor_facet_svts (); virtual int visit_interface (be_interface *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface.h index 86e324fd121..00587d6fd9a 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface.h @@ -45,7 +45,7 @@ class be_visitor_interface : public be_visitor_scope { public: be_visitor_interface (be_visitor_context *ctx); - ~be_visitor_interface (void); + ~be_visitor_interface (); virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ch.h index 8a6b8323cea..a6d0bf77c9d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ch.h @@ -27,7 +27,7 @@ class be_visitor_interface_ch : public be_visitor_interface { public: be_visitor_interface_ch (be_visitor_context *ctx); - ~be_visitor_interface_ch (void); + ~be_visitor_interface_ch (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ci.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ci.h index 41b274c36ce..375a538c424 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ci.h @@ -24,7 +24,7 @@ class be_visitor_interface_ci : public be_visitor_interface { public: be_visitor_interface_ci (be_visitor_context *ctx); - ~be_visitor_interface_ci (void); + ~be_visitor_interface_ci (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_cs.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_cs.h index b3830240020..c78de386e5e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_cs.h @@ -24,7 +24,7 @@ class be_visitor_interface_cs : public be_visitor_interface { public: be_visitor_interface_cs (be_visitor_context *ctx); - ~be_visitor_interface_cs (void); + ~be_visitor_interface_cs (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ex_idl.h index 6f6983ae890..b72b4f957d2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ex_idl.h @@ -28,7 +28,7 @@ class be_visitor_interface_ex_idl : public be_visitor_interface public: be_visitor_interface_ex_idl (be_visitor_context *ctx); - ~be_visitor_interface_ex_idl (void); + ~be_visitor_interface_ex_idl (); virtual int visit_interface (be_interface *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ih.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ih.h index d88faa13f2e..8b861ab6198 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ih.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ih.h @@ -29,7 +29,7 @@ public: be_visitor_interface_ih (be_visitor_context *ctx); /// destructor - ~be_visitor_interface_ih (void); + ~be_visitor_interface_ih (); /// set the right context and make a visitor virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_is.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_is.h index d4a54bd4945..85d6e612542 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_is.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_is.h @@ -28,7 +28,7 @@ public: be_visitor_interface_is (be_visitor_context *ctx); /// destructor - ~be_visitor_interface_is (void); + ~be_visitor_interface_is (); /// set the right context and make a visitor virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_sh.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_sh.h index 9cded98fca5..2ef902215e7 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_sh.h @@ -24,7 +24,7 @@ class be_visitor_interface_sh : public be_visitor_interface { public: be_visitor_interface_sh (be_visitor_context *ctx); - ~be_visitor_interface_sh (void); + ~be_visitor_interface_sh (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ss.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ss.h index a859d496e89..d5caf5496ff 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_ss.h @@ -27,7 +27,7 @@ class be_visitor_interface_ss : public be_visitor_interface { public: be_visitor_interface_ss (be_visitor_context *ctx); - ~be_visitor_interface_ss (void); + ~be_visitor_interface_ss (); virtual int visit_interface (be_interface *node); virtual int visit_component (be_component *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_svth.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_svth.h index 28e95dc4ca6..b62e1ebd3d4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_svth.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_svth.h @@ -28,7 +28,7 @@ class be_visitor_interface_svth : public be_visitor_interface public: be_visitor_interface_svth (be_visitor_context *ctx); - ~be_visitor_interface_svth (void); + ~be_visitor_interface_svth (); virtual int visit_interface (be_interface *node); virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_svts.h b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_svts.h index d4dd4ea012c..16a5d734390 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/interface_svts.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/interface_svts.h @@ -28,7 +28,7 @@ class be_visitor_interface_svts : public be_visitor_interface public: be_visitor_interface_svts (be_visitor_context *ctx); - ~be_visitor_interface_svts (void); + ~be_visitor_interface_svts (); virtual int visit_interface (be_interface *node); virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_ch.h index f5f553ba0d4..dd15ff9eb80 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_ch.h @@ -28,7 +28,7 @@ public: be_visitor_interface_smart_proxy_ch (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_interface_smart_proxy_ch (void); + virtual ~be_visitor_interface_smart_proxy_ch (); /// visit an interface virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h b/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h index 61ee835793d..d407b35f477 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/smart_proxy_cs.h @@ -27,7 +27,7 @@ public: be_visitor_interface_smart_proxy_cs (be_visitor_context *ctx); /// destructor - virtual ~be_visitor_interface_smart_proxy_cs (void); + virtual ~be_visitor_interface_smart_proxy_cs (); /// visit interface virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/tie_sh.h b/TAO/TAO_IDL/be_include/be_visitor_interface/tie_sh.h index a9e1162a554..159874fa2c2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/tie_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/tie_sh.h @@ -28,7 +28,7 @@ public: be_visitor_interface_tie_sh (be_visitor_context *ctx); /// destructor - ~be_visitor_interface_tie_sh (void); + ~be_visitor_interface_tie_sh (); /// set the right context and make a visitor virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/tie_ss.h b/TAO/TAO_IDL/be_include/be_visitor_interface/tie_ss.h index 40c11251da1..f5055a655d6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/tie_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/tie_ss.h @@ -29,7 +29,7 @@ public: be_visitor_interface_tie_ss (be_visitor_context *ctx); /// destructor - ~be_visitor_interface_tie_ss (void); + ~be_visitor_interface_tie_ss (); /// set the right context and make a visitor virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/any_op_ch.h index a0f374c208e..65986f49535 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/any_op_ch.h @@ -30,7 +30,7 @@ public: be_visitor_interface_fwd_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_interface_fwd_any_op_ch (void); + ~be_visitor_interface_fwd_any_op_ch (); /// visit interface_fwd virtual int visit_interface_fwd (be_interface_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/cdr_op_ch.h index eda0f278a6a..950f3d6914e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/cdr_op_ch.h @@ -32,7 +32,7 @@ public: be_visitor_interface_fwd_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_interface_fwd_cdr_op_ch (void); + ~be_visitor_interface_fwd_cdr_op_ch (); /// visit forward declared interface virtual int visit_interface_fwd (be_interface_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/interface_fwd_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/interface_fwd_ch.h index f40ecff308d..33aff8865c0 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/interface_fwd_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface_fwd/interface_fwd_ch.h @@ -28,7 +28,7 @@ public: be_visitor_interface_fwd_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_interface_fwd_ch (void); + ~be_visitor_interface_fwd_ch (); /// visit interface_fwd. virtual int visit_interface_fwd (be_interface_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_member_type_decl.h b/TAO/TAO_IDL/be_include/be_visitor_member_type_decl.h index 12835445a5a..45b2ea985fe 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_member_type_decl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_member_type_decl.h @@ -28,7 +28,7 @@ class be_visitor_member_type_decl : public be_visitor_decl { public: be_visitor_member_type_decl (be_visitor_context *ctx); - virtual ~be_visitor_member_type_decl (void); + virtual ~be_visitor_member_type_decl (); virtual int visit_array (be_array *); virtual int visit_component (be_component *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_module/any_op.h b/TAO/TAO_IDL/be_include/be_visitor_module/any_op.h index 1ed876190fc..e18ae92a0f8 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_module/any_op.h +++ b/TAO/TAO_IDL/be_include/be_visitor_module/any_op.h @@ -32,7 +32,7 @@ public: be_visitor_module_any_op (be_visitor_context *ctx); /// destructor - ~be_visitor_module_any_op (void); + ~be_visitor_module_any_op (); /// visit module virtual int visit_module (be_module *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h b/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h index 31913a72908..c78e389a3b2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h +++ b/TAO/TAO_IDL/be_include/be_visitor_module/cdr_op.h @@ -32,7 +32,7 @@ public: be_visitor_module_cdr_op (be_visitor_context *ctx); /// destructor - ~be_visitor_module_cdr_op (void); + ~be_visitor_module_cdr_op (); /// visit module virtual int visit_module (be_module *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_module/module.h b/TAO/TAO_IDL/be_include/be_visitor_module/module.h index edaebc17183..64c12a08c6d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_module/module.h +++ b/TAO/TAO_IDL/be_include/be_visitor_module/module.h @@ -28,7 +28,7 @@ class be_visitor_module : public be_visitor_scope public: be_visitor_module (be_visitor_context *ctx); - ~be_visitor_module (void); + ~be_visitor_module (); virtual int visit_constant (be_constant *node); virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_module/module_ch.h b/TAO/TAO_IDL/be_include/be_visitor_module/module_ch.h index 74e4ed0243f..8fca169d567 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_module/module_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_module/module_ch.h @@ -29,7 +29,7 @@ public: be_visitor_module_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_module_ch (void); + ~be_visitor_module_ch (); /// visit module. We provide code for this method in the derived class virtual int visit_module (be_module *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_module/module_ih.h b/TAO/TAO_IDL/be_include/be_visitor_module/module_ih.h index e6ce39f1690..afa981dab01 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_module/module_ih.h +++ b/TAO/TAO_IDL/be_include/be_visitor_module/module_ih.h @@ -30,7 +30,7 @@ public: be_visitor_module_ih (be_visitor_context *ctx); /// destructor - ~be_visitor_module_ih (void); + ~be_visitor_module_ih (); /// visit module. We provide code for this method in the derived class virtual int visit_module (be_module *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_module/module_sh.h b/TAO/TAO_IDL/be_include/be_visitor_module/module_sh.h index d6fa27007f7..1598f322820 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_module/module_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_module/module_sh.h @@ -29,7 +29,7 @@ public: be_visitor_module_sh (be_visitor_context *ctx); /// destructor - ~be_visitor_module_sh (void); + ~be_visitor_module_sh (); /// visit module. We provide code for this method in the derived class virtual int visit_module (be_module *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h b/TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h index 9dd04c79fd0..3e2e37c3562 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_native/native_ch.h @@ -28,7 +28,7 @@ public: be_visitor_native_ch (be_visitor_context *ctx); /// deenumor - ~be_visitor_native_ch (void); + ~be_visitor_native_ch (); /// visit native. virtual int visit_native (be_native *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_null_return_value.h b/TAO/TAO_IDL/be_include/be_visitor_null_return_value.h index cdc71d47ccc..bc8322ceea4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_null_return_value.h +++ b/TAO/TAO_IDL/be_include/be_visitor_null_return_value.h @@ -30,7 +30,7 @@ class be_visitor_null_return_value : public be_visitor_decl { public: be_visitor_null_return_value (be_visitor_context *ctx); - virtual ~be_visitor_null_return_value (void); + virtual ~be_visitor_null_return_value (); virtual int visit_array (be_array *); virtual int visit_component (be_component *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_sh.h b/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_sh.h index 8c6cd8d2999..a3bb7bd730d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_sh.h @@ -25,7 +25,7 @@ class be_visitor_amh_rh_operation_sh : public be_visitor_operation public: be_visitor_amh_rh_operation_sh (be_visitor_context *ctx); - ~be_visitor_amh_rh_operation_sh (void); + ~be_visitor_amh_rh_operation_sh (); int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h b/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h index 1beb3814d9d..059e5ca2f3b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h @@ -25,7 +25,7 @@ class be_visitor_amh_rh_operation_ss : public be_visitor_operation public: be_visitor_amh_rh_operation_ss (be_visitor_context *ctx); - ~be_visitor_amh_rh_operation_ss (void); + ~be_visitor_amh_rh_operation_ss (); int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/amh_sh.h b/TAO/TAO_IDL/be_include/be_visitor_operation/amh_sh.h index 31a72611e45..966574ab1f9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/amh_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/amh_sh.h @@ -21,7 +21,7 @@ class be_visitor_amh_operation_sh : public be_visitor_operation { public: be_visitor_amh_operation_sh (be_visitor_context *ctx); - ~be_visitor_amh_operation_sh (void); + ~be_visitor_amh_operation_sh (); virtual int visit_operation (be_operation *node); virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/amh_ss.h b/TAO/TAO_IDL/be_include/be_visitor_operation/amh_ss.h index 82024d5b74f..fa8dc6b614d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/amh_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/amh_ss.h @@ -22,7 +22,7 @@ class be_visitor_amh_operation_ss : public be_visitor_operation public: be_visitor_amh_operation_ss (be_visitor_context *ctx); - ~be_visitor_amh_operation_ss (void); + ~be_visitor_amh_operation_ss (); virtual int visit_operation (be_operation *node); virtual int visit_attribute (be_attribute *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/ami_cs.h b/TAO/TAO_IDL/be_include/be_visitor_operation/ami_cs.h index bc30ee7fce3..64a1b557ce5 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/ami_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/ami_cs.h @@ -31,7 +31,7 @@ public: be_visitor_operation_ami_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_ami_cs (void); + ~be_visitor_operation_ami_cs (); /// visit operation. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/ami_handler_reply_stub_operation_cs.h b/TAO/TAO_IDL/be_include/be_visitor_operation/ami_handler_reply_stub_operation_cs.h index 9f598031e3e..b222f25eec9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/ami_handler_reply_stub_operation_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/ami_handler_reply_stub_operation_cs.h @@ -33,7 +33,7 @@ public: be_visitor_operation_ami_handler_reply_stub_operation_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_ami_handler_reply_stub_operation_cs (void); + ~be_visitor_operation_ami_handler_reply_stub_operation_cs (); /// visit operation. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/arglist.h b/TAO/TAO_IDL/be_include/be_visitor_operation/arglist.h index ef1721f9765..a95c034822a 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/arglist.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/arglist.h @@ -30,7 +30,7 @@ class be_visitor_operation_arglist : public be_visitor_operation public: be_visitor_operation_arglist (be_visitor_context *ctx); - ~be_visitor_operation_arglist (void); + ~be_visitor_operation_arglist (); virtual int visit_operation (be_operation *node); virtual int visit_factory (be_factory *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h b/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h index ea31a1aaf4e..6ddf98cfad4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h @@ -33,7 +33,7 @@ public: be_visitor_operation_argument (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_argument (void); + ~be_visitor_operation_argument (); /// stuff to o/p after each element of the scope is handled virtual int post_process (be_decl *); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/argument_invoke.h b/TAO/TAO_IDL/be_include/be_visitor_operation/argument_invoke.h index 4828c66a4b1..46c5f0334d9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/argument_invoke.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/argument_invoke.h @@ -35,7 +35,7 @@ public: be_visitor_operation_argument_invoke (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_argument_invoke (void); + ~be_visitor_operation_argument_invoke (); /// stuff to o/p before each element of the scope is handled virtual int pre_process (be_decl *bd); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/argument_marshal.h b/TAO/TAO_IDL/be_include/be_visitor_operation/argument_marshal.h index 7e26cff6ce6..b0441621613 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/argument_marshal.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/argument_marshal.h @@ -31,7 +31,7 @@ public: be_visitor_operation_argument_marshal (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_argument_marshal (void); + ~be_visitor_operation_argument_marshal (); /// stuff to o/p before each element of the scope is handled virtual int pre_process (be_decl *bd); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h b/TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h index ce17f859cc0..8a4a37e743b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h @@ -28,7 +28,7 @@ public: be_visitor_operation_direct_proxy_impl_ss (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_direct_proxy_impl_ss (void); + ~be_visitor_operation_direct_proxy_impl_ss (); /// visit operation node. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_cs.h b/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_cs.h index c2f52642839..c2ef44f481f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_cs.h @@ -33,7 +33,7 @@ public: be_visitor_operation_exceptlist_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_exceptlist_cs (void); + ~be_visitor_operation_exceptlist_cs (); /// visit the operation int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_ss.h b/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_ss.h index 5052fd237f3..09a5a3eeb52 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/exceptlist_ss.h @@ -36,7 +36,7 @@ public: be_visitor_operation_exceptlist_ss (be_visitor_context * ctx); /// destructor - ~be_visitor_operation_exceptlist_ss (void); + ~be_visitor_operation_exceptlist_ss (); /// visit the operation int visit_operation (be_operation * node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation.h index a69ca530064..b41e2adfe36 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation.h @@ -32,7 +32,7 @@ public: be_visitor_operation (be_visitor_context *ctx); /// destructor - ~be_visitor_operation (void); + ~be_visitor_operation (); // =helper diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ch.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ch.h index 3fd32942e60..79620cd71b6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ch.h @@ -31,7 +31,7 @@ public: be_visitor_operation_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_ch (void); + ~be_visitor_operation_ch (); /// visit operation. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_cs.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_cs.h index 67fb65ef842..843fc3c11b4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_cs.h @@ -31,7 +31,7 @@ public: be_visitor_operation_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_cs (void); + ~be_visitor_operation_cs (); /// visit operation. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_exs.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_exs.h index 1a6e95c51bb..8d89781c20d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_exs.h @@ -30,7 +30,7 @@ class be_visitor_operation_exs : public be_visitor_scope public: be_visitor_operation_exs (be_visitor_context *ctx); - ~be_visitor_operation_exs (void); + ~be_visitor_operation_exs (); virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ih.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ih.h index 752a4fd774a..11b4cd84301 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ih.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ih.h @@ -31,7 +31,7 @@ public: be_visitor_operation_ih (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_ih (void); + ~be_visitor_operation_ih (); /// visit operation. We provide code for this method in the derived class virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_is.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_is.h index 870fcd1bb81..b03de3f23b4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_is.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_is.h @@ -31,7 +31,7 @@ public: be_visitor_operation_is (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_is (void); + ~be_visitor_operation_is (); /// visit operation. We provide code for this method in the derived class virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_sh.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_sh.h index 7841f3a9066..2a081ad3c90 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_sh.h @@ -31,7 +31,7 @@ public: be_visitor_operation_sh (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_sh (void); + ~be_visitor_operation_sh (); /// visit operation. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ss.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ss.h index e12a2a59669..80b971a25d0 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_ss.h @@ -32,7 +32,7 @@ public: be_visitor_operation_ss (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_ss (void); + ~be_visitor_operation_ss (); /// visit operation. We provide code for this method in the derived class virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_svs.h b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_svs.h index 391bcfdf7d2..f739aaa5cc5 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/operation_svs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/operation_svs.h @@ -31,7 +31,7 @@ class be_visitor_operation_svs : public be_visitor_scope public: be_visitor_operation_svs (be_visitor_context *ctx); - ~be_visitor_operation_svs (void); + ~be_visitor_operation_svs (); virtual int visit_operation (be_operation *node); virtual int visit_argument (be_argument *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h b/TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h index fd0555d206d..4c64e341371 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/proxy_impl_xh.h @@ -28,7 +28,7 @@ public: be_visitor_operation_proxy_impl_xh (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_proxy_impl_xh (void); + ~be_visitor_operation_proxy_impl_xh (); /// visit operation. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/rettype.h b/TAO/TAO_IDL/be_include/be_visitor_operation/rettype.h index 92138e2f332..e63c7c48cea 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/rettype.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/rettype.h @@ -32,7 +32,7 @@ public: be_visitor_operation_rettype (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_rettype (void); + ~be_visitor_operation_rettype (); /// visit an array node int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/rettype_return_cs.h b/TAO/TAO_IDL/be_include/be_visitor_operation/rettype_return_cs.h index 9462881b33c..25f367e66cb 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/rettype_return_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/rettype_return_cs.h @@ -33,7 +33,7 @@ public: be_visitor_operation_rettype_return_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_rettype_return_cs (void); + ~be_visitor_operation_rettype_return_cs (); /// visit an array node int visit_array (be_array *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_ch.h b/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_ch.h index 7111c0d3a56..5967764955f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_ch.h @@ -33,7 +33,7 @@ public: be_visitor_operation_smart_proxy_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_smart_proxy_ch (void); + ~be_visitor_operation_smart_proxy_ch (); /// visit operation node. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_cs.h b/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_cs.h index ae9032ad443..040bd528088 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_cs.h @@ -30,7 +30,7 @@ public: be_visitor_operation_smart_proxy_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_smart_proxy_cs (void); + ~be_visitor_operation_smart_proxy_cs (); /// visit operation. virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/tie_sh.h b/TAO/TAO_IDL/be_include/be_visitor_operation/tie_sh.h index a843454511b..d850c05d9eb 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/tie_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/tie_sh.h @@ -32,7 +32,7 @@ public: be_visitor_operation_tie_sh (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_tie_sh (void); + ~be_visitor_operation_tie_sh (); /// set the right context and make a visitor virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h b/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h index ad8831d311e..21c8b5e315d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/tie_ss.h @@ -31,7 +31,7 @@ public: be_visitor_operation_tie_ss (be_visitor_context *ctx); /// destructor - ~be_visitor_operation_tie_ss (void); + ~be_visitor_operation_tie_ss (); /// set the right context and make a visitor virtual int visit_operation (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/upcall_command_ss.h b/TAO/TAO_IDL/be_include/be_visitor_operation/upcall_command_ss.h index 10d6e7306ae..b35c5df1a10 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_operation/upcall_command_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_operation/upcall_command_ss.h @@ -23,7 +23,7 @@ public: be_visitor_operation_upcall_command_ss (be_visitor_context * ctx); /// destructor - ~be_visitor_operation_upcall_command_ss (void); + ~be_visitor_operation_upcall_command_ss (); /// Same as visit_operation() but override full_skel_name and /// upcall_command_name. diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/any_op.h b/TAO/TAO_IDL/be_include/be_visitor_root/any_op.h index 31647f6923a..1012aec6909 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/any_op.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/any_op.h @@ -28,7 +28,7 @@ class be_visitor_root_any_op : public be_visitor_root public: be_visitor_root_any_op (be_visitor_context *ctx); - ~be_visitor_root_any_op (void); + ~be_visitor_root_any_op (); virtual int visit_root (be_root *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/cdr_op.h b/TAO/TAO_IDL/be_include/be_visitor_root/cdr_op.h index 7dc9c68f544..646d97abc3f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/cdr_op.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/cdr_op.h @@ -28,7 +28,7 @@ class be_visitor_root_cdr_op : public be_visitor_root public: be_visitor_root_cdr_op (be_visitor_context *ctx); - ~be_visitor_root_cdr_op (void); + ~be_visitor_root_cdr_op (); virtual int visit_root (be_root *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root.h b/TAO/TAO_IDL/be_include/be_visitor_root/root.h index cee348218ef..3322d73e1e3 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root.h @@ -27,7 +27,7 @@ class be_visitor_root : public be_visitor_module public: be_visitor_root (be_visitor_context *ctx); - ~be_visitor_root (void); + ~be_visitor_root (); /// This is the only method that differs from that of the /// be_visitor_module bass class. diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h index 501646291bc..3cf7f0ee1de 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_ch.h @@ -28,21 +28,21 @@ class be_visitor_root_ch : public be_visitor_root public: be_visitor_root_ch (be_visitor_context *ctx); - ~be_visitor_root_ch (void); + ~be_visitor_root_ch (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); /// Encapsulating various bits of code generation peculiar /// to the client header file, done either before or after /// the main scope traversal. int gen_arg_traits (be_root *node); - void gen_fwd_decls (void); - void gen_ref_counting_overrides (void); - void gen_static_corba_overrides (void); + void gen_fwd_decls (); + void gen_ref_counting_overrides (); + void gen_static_corba_overrides (); int gen_obv_decls (be_root *node); int gen_object_traits (be_root *node); int gen_template_exports (be_root *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_ci.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_ci.h index d27a02b264c..7522d4f48a2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_ci.h @@ -28,13 +28,13 @@ class be_visitor_root_ci : public be_visitor_root public: be_visitor_root_ci (be_visitor_context *ctx); - ~be_visitor_root_ci (void); + ~be_visitor_root_ci (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); /// Generate OBV definitions in the client inline /// file, done after the main scope traversal. diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_cnh.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_cnh.h index e3934f27152..0861de99d08 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_cnh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_cnh.h @@ -28,13 +28,13 @@ class be_visitor_root_cnh : public be_visitor_root public: be_visitor_root_cnh (be_visitor_context *ctx); - ~be_visitor_root_cnh (void); + ~be_visitor_root_cnh (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_CNH_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_cns.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_cns.h index aba97d8ca8d..0624821cd89 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_cns.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_cns.h @@ -28,12 +28,12 @@ class be_visitor_root_cns : public be_visitor_root public: be_visitor_root_cns (be_visitor_context *ctx); - ~be_visitor_root_cns (void); + ~be_visitor_root_cns (); virtual int visit_root (be_root *node); /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_CNS_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_cs.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_cs.h index 7b1d425ab19..46d255a924e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_cs.h @@ -28,13 +28,13 @@ class be_visitor_root_cs : public be_visitor_root public: be_visitor_root_cs (be_visitor_context *ctx); - ~be_visitor_root_cs (void); + ~be_visitor_root_cs (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); /// Encapsulating various bits of code generation peculiar /// to the client source file, done either before or after diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_ex_idl.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_ex_idl.h index 9f48060c23b..854795b07df 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_ex_idl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_ex_idl.h @@ -28,13 +28,13 @@ class be_visitor_root_ex_idl : public be_visitor_root public: be_visitor_root_ex_idl (be_visitor_context *ctx); - ~be_visitor_root_ex_idl (void); + ~be_visitor_root_ex_idl (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_EX_IDL_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_exh.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_exh.h index f265526a375..c2fb5fcf70e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_exh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_exh.h @@ -28,13 +28,13 @@ class be_visitor_root_exh : public be_visitor_root public: be_visitor_root_exh (be_visitor_context *ctx); - ~be_visitor_root_exh (void); + ~be_visitor_root_exh (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_EXH_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_exs.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_exs.h index 10a24929673..4172a031627 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_exs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_exs.h @@ -28,13 +28,13 @@ class be_visitor_root_exs : public be_visitor_root public: be_visitor_root_exs (be_visitor_context *ctx); - ~be_visitor_root_exs (void); + ~be_visitor_root_exs (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_EXS_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_ih.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_ih.h index 7af2ca6939f..d8a37fa55bb 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_ih.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_ih.h @@ -26,13 +26,13 @@ class be_visitor_root_ih : public be_visitor_root public: be_visitor_root_ih (be_visitor_context *ctx); - ~be_visitor_root_ih (void); + ~be_visitor_root_ih (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_IH_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_is.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_is.h index 1228c06cea4..c41805268fc 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_is.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_is.h @@ -26,13 +26,13 @@ class be_visitor_root_is : public be_visitor_root public: be_visitor_root_is (be_visitor_context *ctx); - ~be_visitor_root_is (void); + ~be_visitor_root_is (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_IS_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_sh.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_sh.h index eb69d3f11cb..db27baf64c1 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_sh.h @@ -27,13 +27,13 @@ class be_visitor_root_sh : public be_visitor_root public: be_visitor_root_sh (be_visitor_context *ctx); - ~be_visitor_root_sh (void); + ~be_visitor_root_sh (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); /// Generate arg template trait specializations in /// the skeleton header file, done before the main diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_ss.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_ss.h index f8ba08c106e..28d4c19288f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_ss.h @@ -27,13 +27,13 @@ class be_visitor_root_ss : public be_visitor_root public: be_visitor_root_ss (be_visitor_context *ctx); - ~be_visitor_root_ss (void); + ~be_visitor_root_ss (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_SS_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_sth.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_sth.h index 2884d9459e9..7b22bac8e50 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_sth.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_sth.h @@ -28,7 +28,7 @@ class be_visitor_root_sth : public be_visitor_root public: be_visitor_root_sth (be_visitor_context *ctx); - ~be_visitor_root_sth (void); + ~be_visitor_root_sth (); virtual int visit_root (be_root *node); @@ -40,7 +40,7 @@ public: private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_STH_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_svh.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_svh.h index 8d1a21e2e96..1e56d0acec9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_svh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_svh.h @@ -28,13 +28,13 @@ class be_visitor_root_svh : public be_visitor_root public: be_visitor_root_svh (be_visitor_context *ctx); - ~be_visitor_root_svh (void); + ~be_visitor_root_svh (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_SVH_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h index 6d8202b0c5d..d9baf73eded 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_svs.h @@ -28,13 +28,13 @@ class be_visitor_root_svs : public be_visitor_root public: be_visitor_root_svs (be_visitor_context *ctx); - ~be_visitor_root_svs (void); + ~be_visitor_root_svs (); virtual int visit_root (be_root *node); private: /// Set the right context and make a visitor. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_SVS_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_svth.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_svth.h index 59abaf33ff5..9d557cb3c22 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_svth.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_svth.h @@ -28,13 +28,13 @@ class be_visitor_root_svth : public be_visitor_root public: be_visitor_root_svth (be_visitor_context *ctx); - ~be_visitor_root_svth (void); + ~be_visitor_root_svth (); virtual int visit_root (be_root *node); private: /// Open file and initialize stream. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_SVTH_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_root/root_svts.h b/TAO/TAO_IDL/be_include/be_visitor_root/root_svts.h index 4b669c2118e..9dd2151e95e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_root/root_svts.h +++ b/TAO/TAO_IDL/be_include/be_visitor_root/root_svts.h @@ -28,13 +28,13 @@ class be_visitor_root_svts : public be_visitor_root public: be_visitor_root_svts (be_visitor_context *ctx); - ~be_visitor_root_svts (void); + ~be_visitor_root_svts (); virtual int visit_root (be_root *node); private: /// Set the right context and make a visitor. - int init (void); + int init (); }; #endif /* _BE_VISITOR_ROOT_ROOT_SVTS_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_scope.h b/TAO/TAO_IDL/be_include/be_visitor_scope.h index 7c3b819b27b..2d6bce24001 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_scope.h +++ b/TAO/TAO_IDL/be_include/be_visitor_scope.h @@ -31,7 +31,7 @@ public: be_visitor_scope (be_visitor_context *ctx); /// destructor - ~be_visitor_scope (void); + ~be_visitor_scope (); /// visit scope int visit_scope (be_scope *node); @@ -44,7 +44,7 @@ public: virtual int pre_process (be_decl *); /// return the element number that is being processed - virtual int elem_number (void); + virtual int elem_number (); /// get the successor to elem virtual int next_elem (be_decl *elem, be_decl *&); diff --git a/TAO/TAO_IDL/be_include/be_visitor_sequence/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_sequence/any_op_ch.h index 4cc76d38678..c1df47e39d3 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_sequence/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_sequence/any_op_ch.h @@ -32,7 +32,7 @@ public: be_visitor_sequence_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_sequence_any_op_ch (void); + ~be_visitor_sequence_any_op_ch (); /// visit sequence virtual int visit_sequence (be_sequence *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_sequence/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_sequence/any_op_cs.h index b96fa97cadb..916eaea173b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_sequence/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_sequence/any_op_cs.h @@ -32,7 +32,7 @@ public: be_visitor_sequence_any_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_sequence_any_op_cs (void); + ~be_visitor_sequence_any_op_cs (); /// visit sequence virtual int visit_sequence (be_sequence *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_sequence/buffer_type.h b/TAO/TAO_IDL/be_include/be_visitor_sequence/buffer_type.h index 10249ffc920..e43be03ecb5 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_sequence/buffer_type.h +++ b/TAO/TAO_IDL/be_include/be_visitor_sequence/buffer_type.h @@ -31,7 +31,7 @@ public: be_visitor_sequence_buffer_type (be_visitor_context *ctx); /// destructor - ~be_visitor_sequence_buffer_type (void); + ~be_visitor_sequence_buffer_type (); // = Visitor methods. virtual int visit_predefined_type (be_predefined_type *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_sequence/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_sequence/cdr_op_ch.h index adec609812e..7d6ee5e5b29 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_sequence/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_sequence/cdr_op_ch.h @@ -32,7 +32,7 @@ public: be_visitor_sequence_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_sequence_cdr_op_ch (void); + ~be_visitor_sequence_cdr_op_ch (); /// visit sequence virtual int visit_sequence (be_sequence *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_sequence/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_sequence/cdr_op_cs.h index 261e6a92479..530d6f85398 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_sequence/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_sequence/cdr_op_cs.h @@ -34,7 +34,7 @@ public: be_visitor_sequence_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_sequence_cdr_op_cs (void); + ~be_visitor_sequence_cdr_op_cs (); /// visit sequence virtual int visit_sequence (be_sequence *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_base.h b/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_base.h index 3b6df9024ec..47313216b25 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_base.h +++ b/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_base.h @@ -36,7 +36,7 @@ public: be_visitor_sequence_base (be_visitor_context *ctx); /// destructor - ~be_visitor_sequence_base (void); + ~be_visitor_sequence_base (); // = Visitor methods. virtual int visit_predefined_type (be_predefined_type *node); @@ -80,7 +80,7 @@ public: be_sequence *node ); ///Dtor - ~be_visitor_sequence_base_template_args (void); + ~be_visitor_sequence_base_template_args (); //= Visit methods virtual int visit_interface (be_interface *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_ch.h b/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_ch.h index 7c110967ce2..e4b106f3858 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_ch.h @@ -31,7 +31,7 @@ public: be_visitor_sequence_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_sequence_ch (void); + ~be_visitor_sequence_ch (); /// visit sequence node. virtual int visit_sequence (be_sequence *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_cs.h b/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_cs.h index c4b85929655..d6a6ba09009 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_sequence/sequence_cs.h @@ -32,7 +32,7 @@ public: be_visitor_sequence_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_sequence_cs (void); + ~be_visitor_sequence_cs (); /// visit sequence node virtual int visit_sequence (be_sequence *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_structure/any_op_ch.h index ee0e57fdd13..c7d3270ab32 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure/any_op_ch.h @@ -32,7 +32,7 @@ public: be_visitor_structure_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_structure_any_op_ch (void); + ~be_visitor_structure_any_op_ch (); /// visit structure virtual int visit_structure (be_structure *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_structure/any_op_cs.h index 8a007981986..72d670410f6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure/any_op_cs.h @@ -32,7 +32,7 @@ public: be_visitor_structure_any_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_structure_any_op_cs (void); + ~be_visitor_structure_any_op_cs (); /// visit structure virtual int visit_structure (be_structure *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_ch.h index 3b93c14968b..a5d002c62e4 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_ch.h @@ -32,7 +32,7 @@ public: be_visitor_structure_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_structure_cdr_op_ch (void); + ~be_visitor_structure_cdr_op_ch (); /// visit structure virtual int visit_structure (be_structure *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h index 5b84cf62295..f307404d16a 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure/cdr_op_cs.h @@ -32,7 +32,7 @@ public: be_visitor_structure_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_structure_cdr_op_cs (void); + ~be_visitor_structure_cdr_op_cs (); /// visit structure virtual int visit_structure (be_structure *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/structure.h b/TAO/TAO_IDL/be_include/be_visitor_structure/structure.h index 70054836d98..afc9cffa36e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure/structure.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure/structure.h @@ -29,7 +29,7 @@ public: be_visitor_structure (be_visitor_context *ctx); /// destructureor - ~be_visitor_structure (void); + ~be_visitor_structure (); /// visit structure. We provide code for this method in the derived class virtual int visit_structure (be_structure *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/structure_ch.h b/TAO/TAO_IDL/be_include/be_visitor_structure/structure_ch.h index 69f68c18def..bd08ad67e00 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure/structure_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure/structure_ch.h @@ -29,7 +29,7 @@ public: be_visitor_structure_ch (be_visitor_context *ctx); /// destructureor - ~be_visitor_structure_ch (void); + ~be_visitor_structure_ch (); /// visit structure. We provide code for this method in the derived class virtual int visit_structure (be_structure *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/structure_ci.h b/TAO/TAO_IDL/be_include/be_visitor_structure/structure_ci.h index d3a9cd4e9b2..b31296115ab 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure/structure_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure/structure_ci.h @@ -29,7 +29,7 @@ public: be_visitor_structure_ci (be_visitor_context *ctx); /// destructureor - ~be_visitor_structure_ci (void); + ~be_visitor_structure_ci (); /// visit structure. We provide code for this method in the derived class virtual int visit_structure (be_structure *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure/structure_cs.h b/TAO/TAO_IDL/be_include/be_visitor_structure/structure_cs.h index 27238db835d..bc37fa3e55b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure/structure_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure/structure_cs.h @@ -29,7 +29,7 @@ public: be_visitor_structure_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_structure_cs (void); + ~be_visitor_structure_cs (); /// visit structure. virtual int visit_structure (be_structure *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_structure_fwd/structure_fwd_ch.h b/TAO/TAO_IDL/be_include/be_visitor_structure_fwd/structure_fwd_ch.h index c01c8b17417..8325735282f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_structure_fwd/structure_fwd_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_structure_fwd/structure_fwd_ch.h @@ -25,7 +25,7 @@ class be_visitor_structure_fwd_ch : public be_visitor_decl public: be_visitor_structure_fwd_ch (be_visitor_context *ctx); - ~be_visitor_structure_fwd_ch (void); + ~be_visitor_structure_fwd_ch (); virtual int visit_structure_fwd (be_structure_fwd *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_template_export.h b/TAO/TAO_IDL/be_include/be_visitor_template_export.h index 6283dcf7382..a77fdd98b12 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_template_export.h +++ b/TAO/TAO_IDL/be_include/be_visitor_template_export.h @@ -34,7 +34,7 @@ class be_visitor_template_export : public be_visitor_scope public: be_visitor_template_export (be_visitor_context *ctx); - virtual ~be_visitor_template_export (void); + virtual ~be_visitor_template_export (); virtual int visit_root (be_root *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_traits.h b/TAO/TAO_IDL/be_include/be_visitor_traits.h index a5d1b3f4094..accc2411db1 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_traits.h +++ b/TAO/TAO_IDL/be_include/be_visitor_traits.h @@ -25,7 +25,7 @@ class be_visitor_traits : public be_visitor_scope public: be_visitor_traits (be_visitor_context *ctx); - virtual ~be_visitor_traits (void); + virtual ~be_visitor_traits (); virtual int visit_root (be_root *node); virtual int visit_module (be_module *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_decl.h b/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_decl.h index a50ef718edf..6f6ae5b285b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_decl.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_decl.h @@ -26,7 +26,7 @@ class be_visitor_typecode_decl : public be_visitor_decl public: be_visitor_typecode_decl (be_visitor_context *ctx); - ~be_visitor_typecode_decl (void); + ~be_visitor_typecode_decl (); /// visit a generic be_type node. virtual int visit_type (be_type *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h b/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h index b2f551067ad..242f3b0c74e 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h @@ -35,7 +35,7 @@ class be_visitor_typecode_defn : public be_visitor_scope { public: be_visitor_typecode_defn (be_visitor_context *ctx); - ~be_visitor_typecode_defn (void); + ~be_visitor_typecode_defn (); virtual int visit_array (be_array *node); virtual int visit_interface (be_interface *node); @@ -95,8 +95,8 @@ protected: * Utility methods to generate enclosing namespaces for * typecodes of bounded (w)strings, sequences and arrays. */ - void gen_begin_NS_for_anon (void); - void gen_end_NS_for_anon (void); + void gen_begin_NS_for_anon (); + void gen_end_NS_for_anon (); protected: diff --git a/TAO/TAO_IDL/be_include/be_visitor_typedef/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_typedef/any_op_ch.h index d56e828a938..b56dc448931 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typedef/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typedef/any_op_ch.h @@ -33,7 +33,7 @@ public: be_visitor_typedef_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_typedef_any_op_ch (void); + ~be_visitor_typedef_any_op_ch (); /// visit typedef virtual int visit_typedef (be_typedef *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typedef/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_typedef/any_op_cs.h index b9893f50635..aa4b7381f82 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typedef/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typedef/any_op_cs.h @@ -33,7 +33,7 @@ public: be_visitor_typedef_any_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_typedef_any_op_cs (void); + ~be_visitor_typedef_any_op_cs (); /// visit typedef virtual int visit_typedef (be_typedef *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typedef/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_typedef/cdr_op_ch.h index 08db072de62..087b3da6db2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typedef/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typedef/cdr_op_ch.h @@ -32,7 +32,7 @@ public: be_visitor_typedef_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_typedef_cdr_op_ch (void); + ~be_visitor_typedef_cdr_op_ch (); /// visit typedef virtual int visit_typedef (be_typedef *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typedef/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_typedef/cdr_op_cs.h index 1c782481af2..10fc1214464 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typedef/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typedef/cdr_op_cs.h @@ -32,7 +32,7 @@ public: be_visitor_typedef_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_typedef_cdr_op_cs (void); + ~be_visitor_typedef_cdr_op_cs (); /// visit typedef virtual int visit_typedef (be_typedef *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef.h b/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef.h index 2de5434f6c0..d287c2a4061 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef.h @@ -30,7 +30,7 @@ public: be_visitor_typedef (be_visitor_context *ctx); /// destructor - ~be_visitor_typedef (void); + ~be_visitor_typedef (); /// must be overridden virtual int visit_typedef (be_typedef *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_ch.h b/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_ch.h index ad27eb3dd52..8e88c8a599c 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_ch.h @@ -30,7 +30,7 @@ public: be_visitor_typedef_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_typedef_ch (void); + ~be_visitor_typedef_ch (); /// visit typedef. We provide code for this method in the derived class virtual int visit_typedef (be_typedef *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_ci.h b/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_ci.h index 849f1ba2cbe..4580a68e7a0 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_ci.h @@ -30,7 +30,7 @@ public: be_visitor_typedef_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_typedef_ci (void); + ~be_visitor_typedef_ci (); /// visit typedef. We provide code for this method in the derived class virtual int visit_typedef (be_typedef *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h b/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h index ae814c4ff69..83afa8278fd 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_typedef/typedef_cs.h @@ -30,7 +30,7 @@ public: be_visitor_typedef_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_typedef_cs (void); + ~be_visitor_typedef_cs (); /// visit typedef. We provide code for this method in the derived class virtual int visit_typedef (be_typedef *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union/any_op_ch.h index ff66c35eb52..3426539cbde 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/any_op_ch.h @@ -30,7 +30,7 @@ class be_visitor_union_any_op_ch : public be_visitor_union public: be_visitor_union_any_op_ch (be_visitor_context *ctx); - ~be_visitor_union_any_op_ch (void); + ~be_visitor_union_any_op_ch (); virtual int visit_union (be_union *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h index 7c8bd1f0757..c8983f61874 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/any_op_cs.h @@ -30,7 +30,7 @@ class be_visitor_union_any_op_cs : public be_visitor_union public: be_visitor_union_any_op_cs (be_visitor_context *ctx); - ~be_visitor_union_any_op_cs (void); + ~be_visitor_union_any_op_cs (); virtual int visit_union (be_union *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union/cdr_op_ch.h index f3a4c952259..1ce2eca9e79 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/cdr_op_ch.h @@ -32,7 +32,7 @@ public: be_visitor_union_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_union_cdr_op_ch (void); + ~be_visitor_union_cdr_op_ch (); /// visit union virtual int visit_union (be_union *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union/cdr_op_cs.h index 9ce9d00c75e..ecfbe0ef1a7 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/cdr_op_cs.h @@ -32,7 +32,7 @@ public: be_visitor_union_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_union_cdr_op_cs (void); + ~be_visitor_union_cdr_op_cs (); /// visit union virtual int visit_union (be_union *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_ch.h index 26a1c20e3ac..4264f931d36 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_ch.h @@ -31,7 +31,7 @@ public: be_visitor_union_discriminant_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_union_discriminant_ch (void); + ~be_visitor_union_discriminant_ch (); /// visit an enum virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_ci.h b/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_ci.h index 4397b39bfa5..eeb7f291462 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_ci.h @@ -31,7 +31,7 @@ public: be_visitor_union_discriminant_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_union_discriminant_ci (void); + ~be_visitor_union_discriminant_ci (); /// visit an enum virtual int visit_enum (be_enum *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_cs.h index 3391c92ed24..037f3e95ada 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/discriminant_cs.h @@ -31,7 +31,7 @@ public: be_visitor_union_discriminant_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_union_discriminant_cs (void); + ~be_visitor_union_discriminant_cs (); /// visit an enum. Required to generate the typecode for an enum definition /// appearing side the union diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/union.h b/TAO/TAO_IDL/be_include/be_visitor_union/union.h index c854e6e2e73..390655bc5f3 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/union.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/union.h @@ -29,7 +29,7 @@ public: be_visitor_union (be_visitor_context *ctx); /// destructor - ~be_visitor_union (void); + ~be_visitor_union (); /// visit union. We provide code for this method in the derived class virtual int visit_union (be_union *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h index 13cb7108fb3..a70a7905448 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/union_ch.h @@ -29,7 +29,7 @@ public: be_visitor_union_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_union_ch (void); + ~be_visitor_union_ch (); /// visit union. We provide code for this method in the derived class virtual int visit_union (be_union *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h b/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h index 2ec0e177681..c94dda604c1 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/union_ci.h @@ -29,7 +29,7 @@ public: be_visitor_union_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_union_ci (void); + ~be_visitor_union_ci (); /// visit union. We provide code for this method in the derived class virtual int visit_union (be_union *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union/union_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union/union_cs.h index 1ef3e1056dc..e7de0e48a79 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union/union_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union/union_cs.h @@ -29,7 +29,7 @@ public: be_visitor_union_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_union_cs (void); + ~be_visitor_union_cs (); /// visit union. We provide code for this method in the derived class virtual int visit_union (be_union *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/cdr_op_ch.h index cedb2782d5a..af566f93483 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/cdr_op_ch.h @@ -28,7 +28,7 @@ public: be_visitor_union_branch_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_union_branch_cdr_op_ch (void); + ~be_visitor_union_branch_cdr_op_ch (); /// visit the union_branch node virtual int visit_union_branch (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/cdr_op_cs.h index 20aa8847d06..6834916b463 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/cdr_op_cs.h @@ -28,7 +28,7 @@ public: be_visitor_union_branch_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_union_branch_cdr_op_cs (void); + ~be_visitor_union_branch_cdr_op_cs (); /// visit the union_branch node virtual int visit_union_branch (be_union_branch *node); @@ -50,7 +50,7 @@ public: virtual int visit_union (be_union *node); /// extra code generation for an explicit default case - virtual int explicit_default (void); + virtual int explicit_default (); private: int emit_valuetype_common (be_type *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/private_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/private_ch.h index 85845146063..b2a2272f31d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/private_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/private_ch.h @@ -28,7 +28,7 @@ class be_visitor_union_branch_private_ch : public be_visitor_decl { public: be_visitor_union_branch_private_ch (be_visitor_context *ctx); - ~be_visitor_union_branch_private_ch (void); + ~be_visitor_union_branch_private_ch (); virtual int visit_union_branch (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_assign_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_assign_cs.h index 79d3801b9f2..4159df97ac9 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_assign_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_assign_cs.h @@ -28,7 +28,7 @@ class be_visitor_union_branch_public_assign_cs { public: be_visitor_union_branch_public_assign_cs (be_visitor_context *ctx); - ~be_visitor_union_branch_public_assign_cs (void); + ~be_visitor_union_branch_public_assign_cs (); virtual int visit_union_branch (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ch.h index 9cbd194ff40..c8d55b282e0 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ch.h @@ -29,7 +29,7 @@ class be_visitor_union_branch_public_ch : public be_visitor_decl { public: be_visitor_union_branch_public_ch (be_visitor_context *ctx); - ~be_visitor_union_branch_public_ch (void); + ~be_visitor_union_branch_public_ch (); virtual int visit_union_branch (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ci.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ci.h index 496c5c2e748..4667b8f4801 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_ci.h @@ -27,7 +27,7 @@ class be_visitor_union_branch_public_ci : public be_visitor_decl { public: be_visitor_union_branch_public_ci (be_visitor_context *ctx); - ~be_visitor_union_branch_public_ci (void); + ~be_visitor_union_branch_public_ci (); virtual int visit_union_branch (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_constructor_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_constructor_cs.h index c30d1d0955a..2490a42ea32 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_constructor_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_constructor_cs.h @@ -25,7 +25,7 @@ class be_visitor_union_branch_public_constructor_cs : public be_visitor_decl { public: be_visitor_union_branch_public_constructor_cs (be_visitor_context *ctx); - ~be_visitor_union_branch_public_constructor_cs (void); + ~be_visitor_union_branch_public_constructor_cs (); virtual int visit_union_branch (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_cs.h index 99fa4686efa..805d29f620c 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_cs.h @@ -28,7 +28,7 @@ class be_visitor_union_branch_public_cs : public be_visitor_decl { public: be_visitor_union_branch_public_cs (be_visitor_context *ctx); - ~be_visitor_union_branch_public_cs (void); + ~be_visitor_union_branch_public_cs (); virtual int visit_union_branch (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_reset_cs.h b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_reset_cs.h index 64cea01a6f5..763de71c464 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_reset_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_branch/public_reset_cs.h @@ -27,7 +27,7 @@ class be_visitor_union_branch_public_reset_cs : public be_visitor_decl { public: be_visitor_union_branch_public_reset_cs (be_visitor_context *ctx); - ~be_visitor_union_branch_public_reset_cs (void); + ~be_visitor_union_branch_public_reset_cs (); virtual int visit_union_branch (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_union_fwd/union_fwd_ch.h b/TAO/TAO_IDL/be_include/be_visitor_union_fwd/union_fwd_ch.h index 2d68892a6d2..96c3e7a7f5c 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_union_fwd/union_fwd_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_union_fwd/union_fwd_ch.h @@ -25,7 +25,7 @@ class be_visitor_union_fwd_ch : public be_visitor_decl public: be_visitor_union_fwd_ch (be_visitor_context *ctx); - ~be_visitor_union_fwd_ch (void); + ~be_visitor_union_fwd_ch (); virtual int visit_union_fwd (be_union_fwd *node); }; diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/any_op_ch.h index 23bf51ed796..080cc5ae17b 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/any_op_ch.h @@ -30,7 +30,7 @@ public: be_visitor_valuebox_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_any_op_ch (void); + ~be_visitor_valuebox_any_op_ch (); /// visit valuebox virtual int visit_valuebox (be_valuebox *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/any_op_cs.h index f218e2a22ad..cd90d608340 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/any_op_cs.h @@ -30,7 +30,7 @@ public: be_visitor_valuebox_any_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_any_op_cs (void); + ~be_visitor_valuebox_any_op_cs (); /// visit valuebox virtual int visit_valuebox (be_valuebox *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/cdr_op_ch.h index aec6458437e..8b0036312bb 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/cdr_op_ch.h @@ -31,7 +31,7 @@ public: be_visitor_valuebox_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_cdr_op_ch (void); + ~be_visitor_valuebox_cdr_op_ch (); /// visit valuebox virtual int visit_valuebox (be_valuebox *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/cdr_op_cs.h index c3b5a917306..37bf0fadb88 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/cdr_op_cs.h @@ -31,7 +31,7 @@ public: be_visitor_valuebox_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_cdr_op_cs (void); + ~be_visitor_valuebox_cdr_op_cs (); /// visit valuebox virtual int visit_valuebox (be_valuebox *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/field_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/field_ch.h index 38b0b3b0b31..34fefe71189 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/field_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/field_ch.h @@ -36,7 +36,7 @@ public: be_visitor_valuebox_field_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_field_ch (void); + ~be_visitor_valuebox_field_ch (); /// visit the union_branch node virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/field_ci.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/field_ci.h index d4670541979..809f453fbd7 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/field_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/field_ci.h @@ -31,7 +31,7 @@ public: be_visitor_valuebox_field_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_field_ci (void); + ~be_visitor_valuebox_field_ci (); /// visit the field node virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/union_member_ci.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/union_member_ci.h index fab13fc5d84..896e8b55351 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/union_member_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/union_member_ci.h @@ -31,7 +31,7 @@ public: be_visitor_valuebox_union_member_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_union_member_ci (void); + ~be_visitor_valuebox_union_member_ci (); /// visit the field node virtual int visit_union_member (be_union_branch *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox.h index b3709563f2f..1b2323c35fa 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox.h @@ -28,7 +28,7 @@ public: be_visitor_valuebox (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox (void); + ~be_visitor_valuebox (); /// visit attribute. We provide code for this method in the derived class virtual int visit_valuebox (be_valuebox *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_ch.h index 118a9668d65..a51de1e2bf3 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_ch.h @@ -29,7 +29,7 @@ public: be_visitor_valuebox_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_ch (void); + ~be_visitor_valuebox_ch (); /// visit valuebox. virtual int visit_valuebox (be_valuebox *node); @@ -66,14 +66,14 @@ private: const char * type_suffix, bool is_any); - void emit_default_constructor (void); + void emit_default_constructor (); void emit_constructor_one_arg (be_decl *node, const char * type_suffix, const char * const_prefix, const char * ref_modifier); - void emit_copy_constructor (void); + void emit_copy_constructor (); void emit_assignment (be_decl *node, const char * type_suffix, diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_ci.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_ci.h index 49dfaa4068d..9648cd6d43f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_ci.h @@ -29,7 +29,7 @@ public: be_visitor_valuebox_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_ci (void); + ~be_visitor_valuebox_ci (); /// visit valuebox. virtual int visit_valuebox (be_valuebox *node); @@ -66,7 +66,7 @@ private: const char * type_suffix, bool is_any); - void emit_default_constructor (void); + void emit_default_constructor (); void emit_default_constructor_alloc (be_decl *node); @@ -75,7 +75,7 @@ private: void emit_constructor_one_arg_alloc (be_decl *node); - void emit_copy_constructor (void); + void emit_copy_constructor (); void emit_copy_constructor_alloc (be_decl *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_cs.h index e796c1609f9..04f7d3c99f7 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuebox/valuebox_cs.h @@ -29,7 +29,7 @@ public: be_visitor_valuebox_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuebox_cs (void); + ~be_visitor_valuebox_cs (); /// visit valuebox. virtual int visit_valuebox (be_valuebox *node); @@ -64,7 +64,7 @@ public: private: /// Generate virtual destructor. - void emit_destructor (void); + void emit_destructor (); int emit_for_predef_enum (char const * marshal_arg); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/any_op_ch.h index f5cc50396c7..8e3bb6945de 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/any_op_ch.h @@ -30,7 +30,7 @@ public: be_visitor_valuetype_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_any_op_ch (void); + ~be_visitor_valuetype_any_op_ch (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/any_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/any_op_cs.h index 93f11d5405e..59592143bf3 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/any_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/any_op_cs.h @@ -30,7 +30,7 @@ public: be_visitor_valuetype_any_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_any_op_cs (void); + ~be_visitor_valuetype_any_op_cs (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/arglist.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/arglist.h index d2e366c65ab..72e09aa5740 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/arglist.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/arglist.h @@ -30,7 +30,7 @@ public: be_visitor_obv_operation_arglist (be_visitor_context *ctx); /// destructor - ~be_visitor_obv_operation_arglist (void); + ~be_visitor_obv_operation_arglist (); /// special arglist generation for amh_exceptionholders bool is_amh_exception_holder (be_operation *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ch.h index c4348820b8b..524ff9818ce 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_ch.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_cdr_op_ch (void); + ~be_visitor_valuetype_cdr_op_ch (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_cs.h index dfa3e35af76..8edf6514674 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/cdr_op_cs.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_cdr_op_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_cdr_op_cs (void); + ~be_visitor_valuetype_cdr_op_cs (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cdr_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cdr_ch.h index ad2c3f30bb8..a3f1302dac6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cdr_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cdr_ch.h @@ -29,7 +29,7 @@ public: be_visitor_valuetype_field_cdr_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_field_cdr_ch (void); + ~be_visitor_valuetype_field_cdr_ch (); /// visit the field node virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cdr_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cdr_cs.h index 1af6277b317..c85bb564e38 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cdr_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cdr_cs.h @@ -29,7 +29,7 @@ public: be_visitor_valuetype_field_cdr_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_field_cdr_cs (void); + ~be_visitor_valuetype_field_cdr_cs (); /// visit the field node virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_ch.h index 1d84862b461..cfe51a9af28 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_ch.h @@ -30,7 +30,7 @@ public: be_visitor_valuetype_field_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_field_ch (void); + ~be_visitor_valuetype_field_ch (); /// visit the field node virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_ci.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_ci.h index 6a8153cac77..461bd00d1b8 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_ci.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_field_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_field_ci (void); + ~be_visitor_valuetype_field_ci (); /// visit the field node virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cs.h index 856acd77c00..4680215ca15 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/field_cs.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_field_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_field_cs (void); + ~be_visitor_valuetype_field_cs (); /// visit the field node virtual int visit_field (be_field *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/marshal_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/marshal_ch.h index 4908c95737e..4363664d7db 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/marshal_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/marshal_ch.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_marshal_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_marshal_ch (void); + ~be_visitor_valuetype_marshal_ch (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/marshal_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/marshal_cs.h index c6024fa7087..8e23ed10fbe 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/marshal_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/marshal_cs.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_marshal_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_marshal_cs (void); + ~be_visitor_valuetype_marshal_cs (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/obv_module.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/obv_module.h index b25cce5d72f..60bbde6b4e2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/obv_module.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/obv_module.h @@ -31,7 +31,7 @@ public: be_visitor_obv_module (be_visitor_context *ctx); /// destructor - ~be_visitor_obv_module (void); + ~be_visitor_obv_module (); virtual int visit_module (be_module *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype.h index 6e5e5677ac8..fe09e70ad43 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype.h @@ -32,7 +32,7 @@ public: be_visitor_valuetype (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype (void); + ~be_visitor_valuetype (); public: /// visit the scope of the valuetype node diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ch.h index 8affb65795e..290ea60d68d 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ch.h @@ -32,7 +32,7 @@ public: be_visitor_valuetype_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_ch (void); + ~be_visitor_valuetype_ch (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); @@ -40,8 +40,8 @@ public: virtual int visit_operation (be_operation *node); virtual int visit_field (be_field *node); - void begin_public (void); - void begin_private (void); + void begin_public (); + void begin_private (); /// Helper method passed to the template method to generate code for /// the operations of the parents of supported interfaces. diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ci.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ci.h index a0c02219945..47f4bd861b6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ci.h @@ -28,7 +28,7 @@ public: be_visitor_valuetype_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_ci (void); + ~be_visitor_valuetype_ci (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h index df723ab6b93..44e785a5013 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_cs.h @@ -26,7 +26,7 @@ class be_visitor_valuetype_cs : public be_visitor_valuetype public: be_visitor_valuetype_cs (be_visitor_context *ctx); - ~be_visitor_valuetype_cs (void); + ~be_visitor_valuetype_cs (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init.h index fae38511a86..9157b6c534c 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init.h @@ -30,12 +30,12 @@ public: be_visitor_valuetype_init (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_init (void); + ~be_visitor_valuetype_init (); public: - void begin_public (void); - void begin_private (void); + void begin_public (); + void begin_private (); }; #endif /* _BE_VALUETYPE_VALUETYPE_INIT_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_arglist_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_arglist_ch.h index b9fc5cd7511..2aea1d11f76 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_arglist_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_arglist_ch.h @@ -29,7 +29,7 @@ public: be_visitor_valuetype_init_arglist_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_init_arglist_ch (void); + ~be_visitor_valuetype_init_arglist_ch (); /// visit factory construct virtual int visit_factory (be_factory *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_ch.h index 2d0ad7cff51..74c73677e06 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_ch.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_init_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_init_ch (void); + ~be_visitor_valuetype_init_ch (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_ci.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_ci.h index 93860a85d62..29c2cff6601 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_ci.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_init_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_init_ci (void); + ~be_visitor_valuetype_init_ci (); }; #endif /* _BE_VALUETYPE_VALUETYPE_INIT_CI_H_ */ diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_cs.h index fdc1e72a47b..674284dda70 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_init_cs.h @@ -31,7 +31,7 @@ public: be_visitor_valuetype_init_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_init_cs (void); + ~be_visitor_valuetype_init_cs (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_ch.h index 19b66bd1533..5fa1dd5cce6 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_ch.h @@ -34,7 +34,7 @@ public: be_visitor_valuetype_obv_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_obv_ch (void); + ~be_visitor_valuetype_obv_ch (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_ci.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_ci.h index fcd6bb5dbc7..232a30cb445 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_ci.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_ci.h @@ -34,7 +34,7 @@ public: be_visitor_valuetype_obv_ci (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_obv_ci (void); + ~be_visitor_valuetype_obv_ci (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_cs.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_cs.h index 29e984c2758..f05ac4cd831 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_cs.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_obv_cs.h @@ -30,7 +30,7 @@ public: be_visitor_valuetype_obv_cs (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_obv_cs (void); + ~be_visitor_valuetype_obv_cs (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_sh.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_sh.h index a51a01244fc..fb1d2e30603 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_sh.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_sh.h @@ -28,7 +28,7 @@ public: be_visitor_valuetype_sh (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_sh (void); + ~be_visitor_valuetype_sh (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ss.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ss.h index 0c844fae670..b28f0f8f191 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ss.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype/valuetype_ss.h @@ -29,7 +29,7 @@ public: be_visitor_valuetype_ss (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_ss (void); + ~be_visitor_valuetype_ss (); virtual int visit_valuetype (be_valuetype *node); virtual int visit_eventtype (be_eventtype *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h index 4df1ecf1d02..1bb2b44360f 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/any_op_ch.h @@ -30,7 +30,7 @@ public: be_visitor_valuetype_fwd_any_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_fwd_any_op_ch (void); + ~be_visitor_valuetype_fwd_any_op_ch (); virtual int visit_valuetype_fwd (be_valuetype_fwd *node); virtual int visit_eventtype_fwd (be_eventtype_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/cdr_op_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/cdr_op_ch.h index 8835cc726de..0a3761bf5f2 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/cdr_op_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/cdr_op_ch.h @@ -33,7 +33,7 @@ public: be_visitor_valuetype_fwd_cdr_op_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_fwd_cdr_op_ch (void); + ~be_visitor_valuetype_fwd_cdr_op_ch (); virtual int visit_valuetype_fwd (be_valuetype_fwd *node); virtual int visit_eventtype_fwd (be_eventtype_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/valuetype_fwd_ch.h b/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/valuetype_fwd_ch.h index b19b47a1eb2..1b86d70af06 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/valuetype_fwd_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_valuetype_fwd/valuetype_fwd_ch.h @@ -28,7 +28,7 @@ public: be_visitor_valuetype_fwd_ch (be_visitor_context *ctx); /// destructor - ~be_visitor_valuetype_fwd_ch (void); + ~be_visitor_valuetype_fwd_ch (); virtual int visit_valuetype_fwd (be_valuetype_fwd *node); virtual int visit_eventtype_fwd (be_eventtype_fwd *node); diff --git a/TAO/TAO_IDL/be_include/be_visitor_xplicit_pre_proc.h b/TAO/TAO_IDL/be_include/be_visitor_xplicit_pre_proc.h index 0bcf140d4e8..4050b455279 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_xplicit_pre_proc.h +++ b/TAO/TAO_IDL/be_include/be_visitor_xplicit_pre_proc.h @@ -28,7 +28,7 @@ class be_visitor_xplicit_pre_proc : public be_visitor_ccm_pre_proc public: be_visitor_xplicit_pre_proc (be_visitor_context *ctx); - virtual ~be_visitor_xplicit_pre_proc (void); + virtual ~be_visitor_xplicit_pre_proc (); virtual int visit_home (be_home *node); @@ -61,7 +61,7 @@ public: virtual int visit_predefined_type (be_predefined_type *node); // Member accessor - be_interface *xplicit (void) const; + be_interface *xplicit () const; private: void check_and_store (AST_Decl *node); diff --git a/TAO/TAO_IDL/fe/idl.tab.hpp b/TAO/TAO_IDL/fe/idl.tab.hpp index fbe1e9b75cc..354e713e626 100644 --- a/TAO/TAO_IDL/fe/idl.tab.hpp +++ b/TAO/TAO_IDL/fe/idl.tab.hpp @@ -203,6 +203,6 @@ typedef union YYSTYPE YYSTYPE; extern YYSTYPE tao_yylval; -int tao_yyparse (void); +int tao_yyparse (); #endif /* !YY_TAO_YY_FE_IDL_TAB_HPP_INCLUDED */ diff --git a/TAO/TAO_IDL/include/ast_argument.h b/TAO/TAO_IDL/include/ast_argument.h index 1666dd12548..6f90a060c00 100644 --- a/TAO/TAO_IDL/include/ast_argument.h +++ b/TAO/TAO_IDL/include/ast_argument.h @@ -87,10 +87,10 @@ public: AST_Type *ft, UTL_ScopedName *n); - virtual ~AST_Argument (void); + virtual ~AST_Argument (); // Data Accessors. - Direction direction (void); + Direction direction (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -99,7 +99,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; diff --git a/TAO/TAO_IDL/include/ast_array.h b/TAO/TAO_IDL/include/ast_array.h index 6fac7521260..7ea8b6521ed 100644 --- a/TAO/TAO_IDL/include/ast_array.h +++ b/TAO/TAO_IDL/include/ast_array.h @@ -87,26 +87,26 @@ public: bool local, bool abstract); - virtual ~AST_Array (void); + virtual ~AST_Array (); // Data Accessors. - ACE_CDR::ULong n_dims (void); + ACE_CDR::ULong n_dims (); - AST_Expression **dims (void); + AST_Expression **dims (); void set_dims (AST_Expression **, ACE_CDR::ULong); - AST_Type *base_type (void) const; + AST_Type *base_type () const; void set_base_type (AST_Type *nbt); // Recursively called on valuetype to check for legal use as // a primary key. Overridden for valuetype, struct, sequence, // union, array, typedef, and interface. - virtual bool legal_for_primary_key (void) const; + virtual bool legal_for_primary_key () const; // Cleanup. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -125,7 +125,7 @@ public: ///} protected: - virtual int compute_size_type (void); + virtual int compute_size_type (); // Compute the size type if it is unknown. private: diff --git a/TAO/TAO_IDL/include/ast_attribute.h b/TAO/TAO_IDL/include/ast_attribute.h index e1d813fd9cf..b8be84250cc 100644 --- a/TAO/TAO_IDL/include/ast_attribute.h +++ b/TAO/TAO_IDL/include/ast_attribute.h @@ -81,13 +81,13 @@ public: bool local, bool abstract); - virtual ~AST_Attribute (void); + virtual ~AST_Attribute (); // Data Accessors. - bool readonly (void) const; - UTL_ExceptList *get_get_exceptions (void) const; - UTL_ExceptList *get_set_exceptions (void) const; + bool readonly () const; + UTL_ExceptList *get_get_exceptions () const; + UTL_ExceptList *get_set_exceptions () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -96,7 +96,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); // Methods to add exceptions directly, used when copying node. UTL_ExceptList *be_add_get_exceptions (UTL_ExceptList *t); @@ -119,7 +119,7 @@ private: // Scope Management Protocol. - friend int tao_yyparse (void); + friend int tao_yyparse (); virtual UTL_NameList *fe_add_get_exceptions (UTL_NameList *e); virtual UTL_NameList *fe_add_set_exceptions (UTL_NameList *e); }; diff --git a/TAO/TAO_IDL/include/ast_component.h b/TAO/TAO_IDL/include/ast_component.h index fe962cab9ac..7d45a7b455b 100644 --- a/TAO/TAO_IDL/include/ast_component.h +++ b/TAO/TAO_IDL/include/ast_component.h @@ -24,7 +24,7 @@ public: AST_Interface **supports_flat, long n_supports_flat); - virtual ~AST_Component (void); + virtual ~AST_Component (); // This also calls the base class version. virtual void redefine (AST_Interface *from); @@ -39,11 +39,11 @@ public: // Accessors. - AST_Component *base_component (void) const; + AST_Component *base_component () const; - AST_Type **supports (void) const; + AST_Type **supports () const; - long n_supports (void) const; + long n_supports () const; // Override for component of UTL_Scope method. virtual AST_Decl *special_lookup (UTL_ScopedName *e, @@ -51,7 +51,7 @@ public: AST_Decl *&final_parent_decl); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Allows adding an uses to a later point // The port i is inserted after port ix, if diff --git a/TAO/TAO_IDL/include/ast_component_fwd.h b/TAO/TAO_IDL/include/ast_component_fwd.h index 528b1da6753..61b721beff6 100644 --- a/TAO/TAO_IDL/include/ast_component_fwd.h +++ b/TAO/TAO_IDL/include/ast_component_fwd.h @@ -12,10 +12,10 @@ public: AST_ComponentFwd (AST_Interface *dummy, UTL_ScopedName *n); - virtual ~AST_ComponentFwd (void); + virtual ~AST_ComponentFwd (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); @@ -24,7 +24,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Is this decl a forward declared type (Yes) - virtual bool is_fwd (void); + virtual bool is_fwd (); static AST_Decl::NodeType const NT; }; diff --git a/TAO/TAO_IDL/include/ast_concrete_type.h b/TAO/TAO_IDL/include/ast_concrete_type.h index 79caca0859a..3d15bc1ba7b 100644 --- a/TAO/TAO_IDL/include/ast_concrete_type.h +++ b/TAO/TAO_IDL/include/ast_concrete_type.h @@ -77,10 +77,10 @@ public: AST_ConcreteType (AST_Decl::NodeType nt, UTL_ScopedName *n); - virtual ~AST_ConcreteType (void); + virtual ~AST_ConcreteType (); // Cleanup. - virtual void destroy (void); + virtual void destroy (); virtual bool annotatable () const { return true; } }; diff --git a/TAO/TAO_IDL/include/ast_connector.h b/TAO/TAO_IDL/include/ast_connector.h index 54d08ce7e26..d1748e5853e 100644 --- a/TAO/TAO_IDL/include/ast_connector.h +++ b/TAO/TAO_IDL/include/ast_connector.h @@ -9,17 +9,17 @@ class TAO_IDL_FE_Export AST_Connector : public virtual AST_Component { public: - AST_Connector (void); + AST_Connector (); AST_Connector (UTL_ScopedName *n, AST_Connector *base_connector); - virtual ~AST_Connector (void); + virtual ~AST_Connector (); - AST_Connector *base_connector (void) const; + AST_Connector *base_connector () const; // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); diff --git a/TAO/TAO_IDL/include/ast_constant.h b/TAO/TAO_IDL/include/ast_constant.h index f0961ab11be..b974e63a842 100644 --- a/TAO/TAO_IDL/include/ast_constant.h +++ b/TAO/TAO_IDL/include/ast_constant.h @@ -92,23 +92,23 @@ public: AST_Expression *ev, UTL_ScopedName *n); - virtual ~AST_Constant (void); + virtual ~AST_Constant (); // Data Accessors. - AST_Expression *constant_value (void); - AST_Expression::ExprType et (void); + AST_Expression *constant_value (); + AST_Expression::ExprType et (); // Accessors for the private member. - bool ifr_added (void); + bool ifr_added (); void ifr_added (bool val); - const char *exprtype_to_string (void); + const char *exprtype_to_string (); // Returns the appropriate type. static const char *exprtype_to_string (AST_Expression::ExprType et); // For use with ORBs without the CORBA namespace. - UTL_ScopedName *enum_full_name (void); + UTL_ScopedName *enum_full_name (); // If our type is enum, we have to generate the scoped name. // AST Dumping. @@ -118,7 +118,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; diff --git a/TAO/TAO_IDL/include/ast_consumes.h b/TAO/TAO_IDL/include/ast_consumes.h index 22c84fc62e3..9060876b5c3 100644 --- a/TAO/TAO_IDL/include/ast_consumes.h +++ b/TAO/TAO_IDL/include/ast_consumes.h @@ -12,10 +12,10 @@ public: AST_Consumes (UTL_ScopedName *n, AST_Type *consumes_type); - virtual ~AST_Consumes (void); + virtual ~AST_Consumes (); // Data Accessor. - AST_Type *consumes_type (void) const; + AST_Type *consumes_type () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -24,7 +24,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; }; diff --git a/TAO/TAO_IDL/include/ast_decl.h b/TAO/TAO_IDL/include/ast_decl.h index a617dc4023b..c018be50aba 100644 --- a/TAO/TAO_IDL/include/ast_decl.h +++ b/TAO/TAO_IDL/include/ast_decl.h @@ -93,17 +93,17 @@ protected: COMMON_Base (bool local = false, bool abstract = false); - virtual ~COMMON_Base (void); + virtual ~COMMON_Base (); public: // A no-op, overridden in the child classes. - virtual void destroy (void); + virtual void destroy (); // Accessor needs to get overridden for a few types. - virtual bool is_local (void); + virtual bool is_local (); void is_local (bool val); - bool is_abstract (void) const; + bool is_abstract () const; void is_abstract (bool val); protected: @@ -195,10 +195,10 @@ public: UTL_ScopedName *name, AST_Decl *other); - virtual ~AST_Decl (void); + virtual ~AST_Decl (); // Cleanup method. - virtual void destroy (void); + virtual void destroy (); // If this decl has been found, some types need to be // moved onto their true definitions etc. Defaults to @@ -206,28 +206,28 @@ public: virtual AST_Decl *adjust_found (bool ignore_fwd, bool full_def_only); // Is this decl a forward declared type (default false) - virtual bool is_fwd (void); + virtual bool is_fwd (); // Data Accessors. - bool imported (void); + bool imported (); void set_imported (bool is_it); - bool in_main_file (void); + bool in_main_file (); void set_in_main_file (bool is_it); - UTL_Scope *defined_in (void); + UTL_Scope *defined_in (); void set_defined_in (UTL_Scope *); - NodeType node_type (void); + NodeType node_type (); - long line (void); + long line (); void set_line (long l); - ACE_CString & file_name (void); + ACE_CString & file_name (); void set_file_name (ACE_CString s); - UTL_ScopedName *name (void); + UTL_ScopedName *name (); UTL_ScopedName *compute_name (const char *prefix, const char *suffix); @@ -236,36 +236,36 @@ public: void set_name (UTL_ScopedName *n); - Identifier *local_name (void); + Identifier *local_name (); void local_name (Identifier *id); Identifier *compute_local_name (const char *prefix, const char *sufix); // Apply prefix and suffix to the local name and return. - virtual const char *full_name (void); + virtual const char *full_name (); // Return the stringified full name. - virtual const char *flat_name (void); + virtual const char *flat_name (); // Return the flattened full scoped name. - const char *repoID (void); + const char *repoID (); void repoID (char *value); // Accessors for the repository ID. - const char *prefix (void); + const char *prefix (); void prefix (const char *value); // Accessors for the repository ID prefix. - const char *version (void); + const char *version (); void version (char *value); // Accessors for the version_ member. - bool anonymous (void) const; + bool anonymous () const; void anonymous (bool val); // Accessors for the anonymous_ member. - bool typeid_set (void) const; + bool typeid_set () const; void typeid_set (bool val); // Accessors for the typeid_set_ member. @@ -280,12 +280,12 @@ public: // prefix to the all the reserved keywords. But when we invoke the // operation remotely, we should be sending only the name with out // "_cxx_" prefix. - Identifier *original_local_name (void); + Identifier *original_local_name (); void original_local_name (Identifier *); // To be overridden by the subclasses interface, struct, union, and // the corresponding forward declaration classes. - virtual bool is_defined (void); + virtual bool is_defined (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -301,18 +301,18 @@ public: // Return TRUE if "this" is a child of "s". bool is_child (AST_Decl *s); - bool is_nested (void); + bool is_nested (); // Determines if we are inside of a nested scope or not. - UTL_ScopedName *last_referenced_as (void) const; + UTL_ScopedName *last_referenced_as () const; void last_referenced_as (UTL_ScopedName *n); // Accessors for the prefix_scope_ member. - UTL_Scope *prefix_scope (void); + UTL_Scope *prefix_scope (); void prefix_scope (UTL_Scope *s); // Useful for GIOP to know if a wstring is being marshaled. - virtual int contains_wstring (void); + virtual int contains_wstring (); void contains_wstring (int val); // Additional checks when we think we have caught an IDL @@ -321,7 +321,7 @@ public: bool masking_checks (AST_Decl *mod); // Accessors for the member. - bool in_tmpl_mod_not_aliased (void) const; + bool in_tmpl_mod_not_aliased () const; void in_tmpl_mod_not_aliased (bool val); /// Set and get annotations for this IDL element @@ -405,13 +405,13 @@ protected: void dump_i (ACE_OSTREAM_TYPE &o, const char *s) const ; - void compute_repoID (void); + void compute_repoID (); // Computes the repoID. - void compute_full_name (void); + void compute_full_name (); // Computes the stringified scoped name. - void compute_flat_name (void); + void compute_flat_name (); // Compute the flattened fully scoped name. const char *node_type_to_string (NodeType nt); diff --git a/TAO/TAO_IDL/include/ast_emits.h b/TAO/TAO_IDL/include/ast_emits.h index c19e620dafb..423a5f8a76a 100644 --- a/TAO/TAO_IDL/include/ast_emits.h +++ b/TAO/TAO_IDL/include/ast_emits.h @@ -12,10 +12,10 @@ public: AST_Emits (UTL_ScopedName *n, AST_Type *emits_type); - virtual ~AST_Emits (void); + virtual ~AST_Emits (); // Data Accessor. - AST_Type *emits_type (void) const; + AST_Type *emits_type () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -24,7 +24,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; }; diff --git a/TAO/TAO_IDL/include/ast_enum.h b/TAO/TAO_IDL/include/ast_enum.h index dc580f08ab2..32b18f78a4c 100644 --- a/TAO/TAO_IDL/include/ast_enum.h +++ b/TAO/TAO_IDL/include/ast_enum.h @@ -80,7 +80,7 @@ public: bool local, bool abstract); - virtual ~AST_Enum (void); + virtual ~AST_Enum (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); @@ -89,16 +89,16 @@ public: AST_EnumVal *lookup_by_value (const AST_Expression *v); // Get value to be assigned to next enumerator. - unsigned long next_enum_val (void); + unsigned long next_enum_val (); // Return the count of members - virtual int member_count (void); + virtual int member_count (); // Convert a numeric value to the enum's string name for it. UTL_ScopedName *value_to_name (const unsigned long v); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); @@ -108,7 +108,7 @@ public: virtual bool annotatable () const { return true; } private: - friend int tao_yyparse (void); + friend int tao_yyparse (); unsigned long pd_enum_counter; // Value for next enumerator. @@ -116,7 +116,7 @@ private: int member_count_; // Number of members. - int compute_member_count (void); + int compute_member_count (); // Count the number of members. virtual AST_EnumVal *fe_add_enum_val (AST_EnumVal *v); diff --git a/TAO/TAO_IDL/include/ast_enum_val.h b/TAO/TAO_IDL/include/ast_enum_val.h index fcfa695315d..f1667000d0b 100644 --- a/TAO/TAO_IDL/include/ast_enum_val.h +++ b/TAO/TAO_IDL/include/ast_enum_val.h @@ -78,7 +78,7 @@ public: AST_EnumVal (ACE_CDR::ULong v, UTL_ScopedName *n); - virtual ~AST_EnumVal (void); + virtual ~AST_EnumVal (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); diff --git a/TAO/TAO_IDL/include/ast_eventtype.h b/TAO/TAO_IDL/include/ast_eventtype.h index 10fb255cde7..f7243863e8c 100644 --- a/TAO/TAO_IDL/include/ast_eventtype.h +++ b/TAO/TAO_IDL/include/ast_eventtype.h @@ -20,10 +20,10 @@ public: bool truncatable, bool custom); - virtual ~AST_EventType (void); + virtual ~AST_EventType (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); diff --git a/TAO/TAO_IDL/include/ast_eventtype_fwd.h b/TAO/TAO_IDL/include/ast_eventtype_fwd.h index 0913ae4e2e0..c859663a582 100644 --- a/TAO/TAO_IDL/include/ast_eventtype_fwd.h +++ b/TAO/TAO_IDL/include/ast_eventtype_fwd.h @@ -12,10 +12,10 @@ public: AST_EventTypeFwd (AST_Interface *dummy, UTL_ScopedName *n); - virtual ~AST_EventTypeFwd (void); + virtual ~AST_EventTypeFwd (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); diff --git a/TAO/TAO_IDL/include/ast_exception.h b/TAO/TAO_IDL/include/ast_exception.h index ebcb56fd145..76556795479 100644 --- a/TAO/TAO_IDL/include/ast_exception.h +++ b/TAO/TAO_IDL/include/ast_exception.h @@ -83,7 +83,7 @@ public: bool local, bool abstract); - virtual ~AST_Exception (void); + virtual ~AST_Exception (); virtual bool in_recursion (ACE_Unbounded_Queue<AST_Type *> &list); // Check if we or the parameter node is in recursion. @@ -95,7 +95,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; }; diff --git a/TAO/TAO_IDL/include/ast_expression.h b/TAO/TAO_IDL/include/ast_expression.h index ec2dfc4eb22..9a975bf9502 100644 --- a/TAO/TAO_IDL/include/ast_expression.h +++ b/TAO/TAO_IDL/include/ast_expression.h @@ -161,7 +161,7 @@ public: // Structure to describe value of constant expression and its type. struct AST_ExprValue { - AST_ExprValue (void); + AST_ExprValue (); union { @@ -232,30 +232,30 @@ public: AST_Expression (const ACE_CDR::Fixed &f); // Destructor. - virtual ~AST_Expression (void); + virtual ~AST_Expression (); // Data Accessors. - UTL_Scope *defined_in (void); + UTL_Scope *defined_in (); void set_defined_in (UTL_Scope *d); - long line (void); + long line (); void set_line (long l); - UTL_String *file_name (void); + UTL_String *file_name (); void set_file_name (UTL_String *f); - ExprComb ec (void); + ExprComb ec (); - AST_ExprValue *ev (void); + AST_ExprValue *ev (); void set_ev (AST_ExprValue *new_ev); - AST_Expression *v1 (void); + AST_Expression *v1 (); void set_v1 (AST_Expression *e); - AST_Expression *v2 (void); + AST_Expression *v2 (); void set_v2 (AST_Expression *e); - UTL_ScopedName *n (void); + UTL_ScopedName *n (); void set_n (UTL_ScopedName *new_n); // AST Dumping. @@ -265,7 +265,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); // Other operations. @@ -286,10 +286,10 @@ public: long compare (AST_Expression *vc); // Accessor for the member. - AST_Decl *get_tdef (void) const; + AST_Decl *get_tdef () const; // Accessor for the member. - AST_Param_Holder *param_holder (void) const; + AST_Param_Holder *param_holder () const; static const char *exprtype_to_string (ExprType t); @@ -345,7 +345,7 @@ private: // Non-zero if we were created from a reference template param. // Fill out the lineno, filename and definition scope details. - void fill_definition_details (void); + void fill_definition_details (); // Internal evaluation. virtual AST_ExprValue *eval_internal (EvalKind ek); diff --git a/TAO/TAO_IDL/include/ast_extended_port.h b/TAO/TAO_IDL/include/ast_extended_port.h index 8e467d4977f..dd0fb686581 100644 --- a/TAO/TAO_IDL/include/ast_extended_port.h +++ b/TAO/TAO_IDL/include/ast_extended_port.h @@ -13,12 +13,12 @@ public: UTL_ScopedName *n, AST_PortType *porttype_ref); - virtual ~AST_Extended_Port (void); + virtual ~AST_Extended_Port (); - AST_PortType *port_type (void) const; + AST_PortType *port_type () const; // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); diff --git a/TAO/TAO_IDL/include/ast_extern.h b/TAO/TAO_IDL/include/ast_extern.h index c2c9e0f00af..480182b2467 100644 --- a/TAO/TAO_IDL/include/ast_extern.h +++ b/TAO/TAO_IDL/include/ast_extern.h @@ -79,7 +79,7 @@ class AST_Decl; // type the full definition was also seen. extern void AST_record_fwd_decl (AST_Type *i); -extern TAO_IDL_FE_Export void AST_check_fwd_decls (void); +extern TAO_IDL_FE_Export void AST_check_fwd_decls (); extern bool AST_illegal_recursive_type (AST_Decl *t); extern bool AST_illegal_interface_recursion (AST_Decl *t); diff --git a/TAO/TAO_IDL/include/ast_factory.h b/TAO/TAO_IDL/include/ast_factory.h index c84ef84ca9e..d83aeacfd84 100644 --- a/TAO/TAO_IDL/include/ast_factory.h +++ b/TAO/TAO_IDL/include/ast_factory.h @@ -81,18 +81,18 @@ class TAO_IDL_FE_Export AST_Factory : public virtual AST_Decl, public: AST_Factory (UTL_ScopedName *n); - virtual ~AST_Factory (void); + virtual ~AST_Factory (); - UTL_ExceptList *exceptions (void); + UTL_ExceptList *exceptions (); // Return exception list. - int n_exceptions (void); + int n_exceptions (); // Return exception count. - virtual int argument_count (void); + virtual int argument_count (); // Return the count of members. - virtual int has_native (void); + virtual int has_native (); // Any of the arguments or the return value is a <native> type. // This is important because in that case no code should be // generated for the stubs. @@ -101,7 +101,7 @@ public: virtual void dump (ACE_OSTREAM_TYPE &o); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); @@ -129,12 +129,12 @@ protected: private: // Operations. - int compute_argument_attr (void); + int compute_argument_attr (); // Count the number of arguments. // Scope Management Protocol. - friend int tao_yyparse (void); + friend int tao_yyparse (); virtual AST_Argument *fe_add_argument (AST_Argument *a); virtual UTL_NameList *fe_add_exceptions (UTL_NameList *e); }; diff --git a/TAO/TAO_IDL/include/ast_field.h b/TAO/TAO_IDL/include/ast_field.h index 68d8fe39754..2949a69b97e 100644 --- a/TAO/TAO_IDL/include/ast_field.h +++ b/TAO/TAO_IDL/include/ast_field.h @@ -109,10 +109,10 @@ public: UTL_ScopedName *name, AST_Field *other); - virtual ~AST_Field (void); + virtual ~AST_Field (); // Data Accessors. - AST_Type *field_type (void) const; + AST_Type *field_type () const; /// Get and Set Visibility ///{ @@ -121,12 +121,12 @@ public: ///} // Are we or do we contain a wstring? - virtual int contains_wstring (void); + virtual int contains_wstring (); // Determine this bit of state after we have // be added to our aggregate type and before // we are destroyed. - void set_recursive_flag (void); + void set_recursive_flag (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -135,7 +135,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; diff --git a/TAO/TAO_IDL/include/ast_finder.h b/TAO/TAO_IDL/include/ast_finder.h index 25d6dabd511..f66e44d910f 100644 --- a/TAO/TAO_IDL/include/ast_finder.h +++ b/TAO/TAO_IDL/include/ast_finder.h @@ -12,13 +12,13 @@ public: AST_Finder (UTL_ScopedName *n); - virtual ~AST_Finder (void); + virtual ~AST_Finder (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); diff --git a/TAO/TAO_IDL/include/ast_generator.h b/TAO/TAO_IDL/include/ast_generator.h index d4fd9fbac16..36c34f517d4 100644 --- a/TAO/TAO_IDL/include/ast_generator.h +++ b/TAO/TAO_IDL/include/ast_generator.h @@ -103,9 +103,9 @@ class AST_Annotation_Member; class TAO_IDL_FE_Export AST_Generator { public: - AST_Generator (void) {} + AST_Generator () {} - virtual ~AST_Generator (void) {} + virtual ~AST_Generator () {} // Operations. diff --git a/TAO/TAO_IDL/include/ast_home.h b/TAO/TAO_IDL/include/ast_home.h index 728b3af6a55..045c1357e8b 100644 --- a/TAO/TAO_IDL/include/ast_home.h +++ b/TAO/TAO_IDL/include/ast_home.h @@ -20,7 +20,7 @@ public: AST_Interface **supports_flat, long n_supports_flat); - virtual ~AST_Home (void); + virtual ~AST_Home (); // Extend lookup to the base home. virtual AST_Decl *look_in_inherited (UTL_ScopedName *e, @@ -37,20 +37,20 @@ public: // Accessors. - AST_Home *base_home (void) const; + AST_Home *base_home () const; - AST_Type **supports (void) const; + AST_Type **supports () const; - long n_supports (void) const; + long n_supports () const; - AST_Component *managed_component (void) const; + AST_Component *managed_component () const; - AST_Type *primary_key (void) const; + AST_Type *primary_key () const; void transfer_scope_elements (AST_Interface *dst); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -63,7 +63,7 @@ public: private: // Scope Management Protocol. - friend int tao_yyparse (void); + friend int tao_yyparse (); friend class ast_visitor_tmpl_module_inst; virtual AST_Factory *fe_add_factory (AST_Factory *f); diff --git a/TAO/TAO_IDL/include/ast_interface.h b/TAO/TAO_IDL/include/ast_interface.h index ebb57be4b30..a5fe7b023f5 100644 --- a/TAO/TAO_IDL/include/ast_interface.h +++ b/TAO/TAO_IDL/include/ast_interface.h @@ -85,7 +85,7 @@ public: bool local, bool abstract); - virtual ~AST_Interface (void); + virtual ~AST_Interface (); // This serves for interfaces, value types, components, and eventtypes. static void fwd_redefinition_helper (AST_Interface *&i, @@ -94,16 +94,16 @@ public: // Overridden for valuetypes, components, and eventtypes. virtual void redefine (AST_Interface *from); - AST_Type **inherits (void) const; + AST_Type **inherits () const; - long n_inherits (void) const; + long n_inherits () const; - AST_Interface **inherits_flat (void) const; + AST_Interface **inherits_flat () const; - long n_inherits_flat (void) const; + long n_inherits_flat () const; - ACE_Unbounded_Queue<AST_Type *> &get_insert_queue (void); - ACE_Unbounded_Queue<AST_Type *> &get_del_queue (void); + ACE_Unbounded_Queue<AST_Type *> &get_insert_queue (); + ACE_Unbounded_Queue<AST_Type *> &get_del_queue (); AST_Operation *be_add_operation (AST_Operation *); @@ -113,18 +113,18 @@ public: // Is this interface defined? This predicate returns FALSE when an // interface was forward declared but not defined yet, and TRUE in // all other cases. - bool is_defined (void); + bool is_defined (); // Check if we have redefined any of our parents' operations or attributes, // and check if there is such a clash among the parents - bool redef_clash (void); + bool redef_clash (); // Accessors for the member. - bool home_equiv (void) const; + bool home_equiv () const; void home_equiv (bool val); // Accessors for the member. - AST_InterfaceFwd *fwd_decl (void) const; + AST_InterfaceFwd *fwd_decl () const; void fwd_decl (AST_InterfaceFwd *node); // Look through inherited interfaces. @@ -135,29 +135,29 @@ public: bool full_def_only = false); /// Do we have both abstract and concrete parents? - int has_mixed_parentage (void); + int has_mixed_parentage (); /// Compute whether or not we have both abstract and concrete parents, /// and make a list of the abstract parents, if any. - void analyze_parentage (void); + void analyze_parentage (); // Recursively called on valuetype to check for legal use as // a primary key. Overridden for valuetype, struct, sequence, // union, array, typedef, and interface. - virtual bool legal_for_primary_key (void) const; + virtual bool legal_for_primary_key () const; virtual AST_Decl *special_lookup (UTL_ScopedName *e, bool full_def_only, AST_Decl *&final_parent_decl); /// Accessors for the members. - AST_Interface *ami_handler (void) const; + AST_Interface *ami_handler () const; void ami_handler (AST_Interface *handler); - AST_Interface *ami4ccm_uses (void) const; + AST_Interface *ami4ccm_uses () const; void ami4ccm_uses (AST_Interface *implied); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); diff --git a/TAO/TAO_IDL/include/ast_interface_fwd.h b/TAO/TAO_IDL/include/ast_interface_fwd.h index f0427fedd5c..101b39fd6d6 100644 --- a/TAO/TAO_IDL/include/ast_interface_fwd.h +++ b/TAO/TAO_IDL/include/ast_interface_fwd.h @@ -77,9 +77,9 @@ public: AST_InterfaceFwd (AST_Interface *dummy, UTL_ScopedName *n); - virtual ~AST_InterfaceFwd (void); + virtual ~AST_InterfaceFwd (); - AST_Interface *full_definition (void); + AST_Interface *full_definition (); /** * Sets the full definition. If there is an existing dummy definition, it @@ -87,7 +87,7 @@ public: */ void set_full_definition (AST_Interface *nfd); - virtual bool is_defined (void); + virtual bool is_defined (); void set_as_defined (); /** @@ -98,14 +98,14 @@ public: */ void disown_full_definition (); - virtual bool is_local (void); - virtual bool is_valuetype (void); - virtual bool is_abstract_valuetype (void); + virtual bool is_local (); + virtual bool is_valuetype (); + virtual bool is_abstract_valuetype (); - bool full_def_seen (void); + bool full_def_seen (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); @@ -114,7 +114,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Is this decl a forward declared type (Yes) - virtual bool is_fwd (void); + virtual bool is_fwd (); // We don't actually want the forward declaration, // but want to return the full definition member, diff --git a/TAO/TAO_IDL/include/ast_mirror_port.h b/TAO/TAO_IDL/include/ast_mirror_port.h index dee54323979..3195c88da4a 100644 --- a/TAO/TAO_IDL/include/ast_mirror_port.h +++ b/TAO/TAO_IDL/include/ast_mirror_port.h @@ -12,10 +12,10 @@ public: UTL_ScopedName *n, AST_PortType *porttype_ref); - virtual ~AST_Mirror_Port (void); + virtual ~AST_Mirror_Port (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); diff --git a/TAO/TAO_IDL/include/ast_module.h b/TAO/TAO_IDL/include/ast_module.h index 07da023f2f3..d697dcb785e 100644 --- a/TAO/TAO_IDL/include/ast_module.h +++ b/TAO/TAO_IDL/include/ast_module.h @@ -87,17 +87,17 @@ public: AST_Module (UTL_ScopedName *n, AST_Module *prev = 0); // Destructor. - virtual ~AST_Module (void); + virtual ~AST_Module (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); // Involved in OBV_ namespace generation. - void set_has_nested_valuetype (void); - bool has_nested_valuetype (void); + void set_has_nested_valuetype (); + bool has_nested_valuetype (); // Allows adding an interface at a later point. // The interface i is inserted after interface ix, if @@ -131,11 +131,11 @@ public: virtual int ast_accept (ast_visitor *visitor); // Accessors for the member. - AST_Template_Module_Inst *from_inst (void) const; + AST_Template_Module_Inst *from_inst () const; void from_inst (AST_Template_Module_Inst *node); // Accessors for the member. - AST_Template_Module_Ref *from_ref (void) const; + AST_Template_Module_Ref *from_ref () const; void from_ref (AST_Template_Module_Ref *node); // Override that looks in previous openings. @@ -234,7 +234,7 @@ public: // (called by AST_Root::destroy on the CORBA module containing // the basic types, since it isn't destroyed between processing // multiple IDL files. - void reset_last_in_same_parent_scope (void); + void reset_last_in_same_parent_scope (); virtual bool annotatable () const { return true; } diff --git a/TAO/TAO_IDL/include/ast_native.h b/TAO/TAO_IDL/include/ast_native.h index 389f61f593f..2a56f19a152 100644 --- a/TAO/TAO_IDL/include/ast_native.h +++ b/TAO/TAO_IDL/include/ast_native.h @@ -15,10 +15,10 @@ class TAO_IDL_FE_Export AST_Native : public virtual AST_Exception public: AST_Native (UTL_ScopedName *n); - virtual ~AST_Native (void); + virtual ~AST_Native (); // Cleanup. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); diff --git a/TAO/TAO_IDL/include/ast_operation.h b/TAO/TAO_IDL/include/ast_operation.h index 3c8d277cb60..008fcc4616f 100644 --- a/TAO/TAO_IDL/include/ast_operation.h +++ b/TAO/TAO_IDL/include/ast_operation.h @@ -90,28 +90,28 @@ public: bool local, bool abstract); - virtual ~AST_Operation (void); + virtual ~AST_Operation (); // Data Accessors. - AST_Type *return_type (void); + AST_Type *return_type (); - Flags flags (void); + Flags flags (); - UTL_StrList *context (void); + UTL_StrList *context (); - UTL_ExceptList *exceptions (void); + UTL_ExceptList *exceptions (); // Public operations. - bool void_return_type (void); + bool void_return_type (); /// Returns 1 if the operation has a void return type. /// Return the number of arguments - virtual int argument_count (void); + virtual int argument_count (); /// Return the flag indicating a request sends argument data - virtual bool has_in_arguments (void); + virtual bool has_in_arguments (); /// Count the number of arguments of a certain type. /** @@ -125,7 +125,7 @@ public: */ int count_arguments_with_direction (int direction_mask); - virtual int has_native (void); + virtual int has_native (); // Any of the arguments or the return value is a <native> type. // This is important because in that case no code should be // generated for the stubs. @@ -134,7 +134,7 @@ public: virtual void dump (ACE_OSTREAM_TYPE &o); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); @@ -172,12 +172,12 @@ protected: // Operations. - int compute_argument_attr (void); + int compute_argument_attr (); // Count the number of arguments. // Scope Management Protocol. - friend int tao_yyparse (void); + friend int tao_yyparse (); virtual AST_Argument *fe_add_argument (AST_Argument *a); virtual UTL_StrList *fe_add_context (UTL_StrList *c); virtual UTL_NameList *fe_add_exceptions (UTL_NameList *e); diff --git a/TAO/TAO_IDL/include/ast_param_holder.h b/TAO/TAO_IDL/include/ast_param_holder.h index abd5ad403b1..17f4d66f41b 100644 --- a/TAO/TAO_IDL/include/ast_param_holder.h +++ b/TAO/TAO_IDL/include/ast_param_holder.h @@ -13,15 +13,15 @@ public: AST_Param_Holder (UTL_ScopedName *parameter_name, FE_Utils::T_Param_Info *info); - virtual ~AST_Param_Holder (void); + virtual ~AST_Param_Holder (); - FE_Utils::T_Param_Info const *info (void) const; + FE_Utils::T_Param_Info const *info () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); diff --git a/TAO/TAO_IDL/include/ast_porttype.h b/TAO/TAO_IDL/include/ast_porttype.h index aa98a84ee2a..20b0e92ea26 100644 --- a/TAO/TAO_IDL/include/ast_porttype.h +++ b/TAO/TAO_IDL/include/ast_porttype.h @@ -18,10 +18,10 @@ class TAO_IDL_FE_Export AST_PortType public: AST_PortType (UTL_ScopedName *n); - virtual ~AST_PortType (void); + virtual ~AST_PortType (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); diff --git a/TAO/TAO_IDL/include/ast_predefined_type.h b/TAO/TAO_IDL/include/ast_predefined_type.h index 7e621aa8088..3969936f4ce 100644 --- a/TAO/TAO_IDL/include/ast_predefined_type.h +++ b/TAO/TAO_IDL/include/ast_predefined_type.h @@ -100,10 +100,10 @@ public: AST_PredefinedType (PredefinedType t, UTL_ScopedName *n); - virtual ~AST_PredefinedType (void); + virtual ~AST_PredefinedType (); // Data Accessors. - PredefinedType pt (void); + PredefinedType pt (); // AST Dumping virtual void dump (ACE_OSTREAM_TYPE &o); @@ -112,12 +112,12 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; protected: - virtual int compute_size_type (void); + virtual int compute_size_type (); // Compute the size type if it is unknown. private: diff --git a/TAO/TAO_IDL/include/ast_provides.h b/TAO/TAO_IDL/include/ast_provides.h index bb01a45d6b1..3d5b3f5c52b 100644 --- a/TAO/TAO_IDL/include/ast_provides.h +++ b/TAO/TAO_IDL/include/ast_provides.h @@ -10,10 +10,10 @@ public: AST_Provides (UTL_ScopedName *n, AST_Type *provides_type); - virtual ~AST_Provides (void); + virtual ~AST_Provides (); // Data Accessor. - AST_Type *provides_type (void) const; + AST_Type *provides_type () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -22,7 +22,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; }; diff --git a/TAO/TAO_IDL/include/ast_publishes.h b/TAO/TAO_IDL/include/ast_publishes.h index b1ac2051e36..96295e30067 100644 --- a/TAO/TAO_IDL/include/ast_publishes.h +++ b/TAO/TAO_IDL/include/ast_publishes.h @@ -12,10 +12,10 @@ public: AST_Publishes (UTL_ScopedName *n, AST_Type *publishes_type); - virtual ~AST_Publishes (void); + virtual ~AST_Publishes (); // Data Accessor. - AST_Type *publishes_type (void) const; + AST_Type *publishes_type () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -24,7 +24,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; }; diff --git a/TAO/TAO_IDL/include/ast_root.h b/TAO/TAO_IDL/include/ast_root.h index e3750e20934..8c3b50d01f1 100644 --- a/TAO/TAO_IDL/include/ast_root.h +++ b/TAO/TAO_IDL/include/ast_root.h @@ -75,9 +75,9 @@ class TAO_IDL_FE_Export AST_Root : public virtual AST_Module public: AST_Root (UTL_ScopedName *n); - virtual ~AST_Root (void); + virtual ~AST_Root (); - virtual unsigned long nmembers (void); + virtual unsigned long nmembers (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -89,13 +89,13 @@ public: virtual void destroy (); // Final cleanup. - void fini (void); + void fini (); static AST_Decl::NodeType const NT; private: friend class FE_Declarator; - friend int tao_yyparse (void); + friend int tao_yyparse (); // Add protocol. diff --git a/TAO/TAO_IDL/include/ast_sequence.h b/TAO/TAO_IDL/include/ast_sequence.h index e165bd03ed6..d1f1d94abda 100644 --- a/TAO/TAO_IDL/include/ast_sequence.h +++ b/TAO/TAO_IDL/include/ast_sequence.h @@ -81,30 +81,30 @@ public: bool local, bool abstract); - virtual ~AST_Sequence (void); + virtual ~AST_Sequence (); virtual bool in_recursion (ACE_Unbounded_Queue<AST_Type *> &list); // Are we or the node represented by node involved in recursion. // Data Accessors. - AST_Expression *max_size (void); + AST_Expression *max_size (); - AST_Type *base_type (void) const; + AST_Type *base_type () const; - virtual bool unbounded (void) const; + virtual bool unbounded () const; // Is this sequence bounded or not. // Recursively called on valuetype to check for legal use as // a primary key. Overridden for valuetype, struct, sequence, // union, array, typedef, and interface. - virtual bool legal_for_primary_key (void) const; + virtual bool legal_for_primary_key () const; // Is the element type a forward declared struct or union // that hasn't yet been fully defined? - virtual bool is_defined (void); + virtual bool is_defined (); // Cleanup method. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); diff --git a/TAO/TAO_IDL/include/ast_string.h b/TAO/TAO_IDL/include/ast_string.h index 75ea44326e1..71ad8c1e935 100644 --- a/TAO/TAO_IDL/include/ast_string.h +++ b/TAO/TAO_IDL/include/ast_string.h @@ -82,11 +82,11 @@ public: AST_Expression *max_size, long wide = 1); - virtual ~AST_String (void); + virtual ~AST_String (); // Data Accessors. - AST_Expression *max_size (void); - long width (void); + AST_Expression *max_size (); + long width (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -95,7 +95,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; diff --git a/TAO/TAO_IDL/include/ast_structure.h b/TAO/TAO_IDL/include/ast_structure.h index 48d4341e6a4..15eb9c2dd65 100644 --- a/TAO/TAO_IDL/include/ast_structure.h +++ b/TAO/TAO_IDL/include/ast_structure.h @@ -94,7 +94,7 @@ public: bool local, bool abstract); - virtual ~AST_Structure (void); + virtual ~AST_Structure (); // This serves for both structs and unions. static void fwd_redefinition_helper (AST_Structure *&i, @@ -103,50 +103,50 @@ public: // Overridden for unions. virtual void redefine (AST_Structure *from); - virtual int member_count (void); + virtual int member_count (); // Return the count of members. - virtual ACE_CDR::ULong nfields (void) const; + virtual ACE_CDR::ULong nfields () const; // Return the count of actual fields. virtual int field (AST_Field **&result, ACE_CDR::ULong slot) const; // Get an individual field node. - virtual bool is_local (void); + virtual bool is_local (); // Overwrite the is_local method. virtual bool in_recursion (ACE_Unbounded_Queue<AST_Type *> &list); // Are we or the node represented by node involved in recursion. - virtual int contains_wstring (void); + virtual int contains_wstring (); // Do we contain a wstring at some nesting level? // Is this struct or union defined? This predicate returns FALSE when a // forward declaration is not defined yet, and TRUE in // all other cases. - virtual bool is_defined (void); + virtual bool is_defined (); // Recursively called on valuetype to check for legal use as // a primary key. Overridden for valuetype, struct, sequence, // union, array, typedef, and interface. - virtual bool legal_for_primary_key (void) const; + virtual bool legal_for_primary_key () const; // Accessors for the member. - AST_StructureFwd *fwd_decl (void) const; + AST_StructureFwd *fwd_decl () const; void fwd_decl (AST_StructureFwd *node); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); // Accessor for the member. - ACE_Unbounded_Queue<AST_Field *> &fields (void); + ACE_Unbounded_Queue<AST_Field *> &fields (); static AST_Decl::NodeType const NT; @@ -161,7 +161,7 @@ public: ///} protected: - friend int tao_yyparse (void); + friend int tao_yyparse (); // Scope Management Protocol. virtual AST_Union *fe_add_union (AST_Union *u); @@ -172,7 +172,7 @@ protected: virtual AST_EnumVal *fe_add_enum_val (AST_EnumVal *v); - virtual int compute_size_type (void); + virtual int compute_size_type (); // Compute the size type if it is unknown. ACE_Unbounded_Queue<AST_Field *> fields_; @@ -181,7 +181,7 @@ protected: // the struct. private: - int compute_member_count (void); + int compute_member_count (); // Count the number of members. int member_count_; diff --git a/TAO/TAO_IDL/include/ast_structure_fwd.h b/TAO/TAO_IDL/include/ast_structure_fwd.h index 0e610192ea7..f459c558505 100644 --- a/TAO/TAO_IDL/include/ast_structure_fwd.h +++ b/TAO/TAO_IDL/include/ast_structure_fwd.h @@ -13,16 +13,16 @@ public: AST_StructureFwd (AST_Structure *full_defn, UTL_ScopedName *n); - virtual ~AST_StructureFwd (void); + virtual ~AST_StructureFwd (); - AST_Structure *full_definition (void); + AST_Structure *full_definition (); void set_full_definition (AST_Structure *nfd); - virtual bool is_defined (void); - void set_as_defined (void); + virtual bool is_defined (); + void set_as_defined (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); @@ -31,7 +31,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Is this decl a forward declared type (Yes) - virtual bool is_fwd (void); + virtual bool is_fwd (); // We don't actually want the forward declaration, // but want to return the full definition member, diff --git a/TAO/TAO_IDL/include/ast_template_module.h b/TAO/TAO_IDL/include/ast_template_module.h index 2908afed679..5f1e5d4e8f2 100644 --- a/TAO/TAO_IDL/include/ast_template_module.h +++ b/TAO/TAO_IDL/include/ast_template_module.h @@ -15,10 +15,10 @@ public: AST_Template_Module (UTL_ScopedName *n, FE_Utils::T_PARAMLIST_INFO *template_params); - virtual ~AST_Template_Module (void); + virtual ~AST_Template_Module (); FE_Utils::T_PARAMLIST_INFO * - template_params (void) const; + template_params () const; // Checks for errors in the template args of an instantiation. bool match_arg_names (FE_Utils::T_ARGLIST *args); @@ -30,7 +30,7 @@ public: virtual void dump (ACE_OSTREAM_TYPE &o); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); diff --git a/TAO/TAO_IDL/include/ast_template_module_inst.h b/TAO/TAO_IDL/include/ast_template_module_inst.h index 5adb0e898f2..d56fc150dc1 100644 --- a/TAO/TAO_IDL/include/ast_template_module_inst.h +++ b/TAO/TAO_IDL/include/ast_template_module_inst.h @@ -15,18 +15,18 @@ public: AST_Template_Module *ref, FE_Utils::T_ARGLIST *template_args); - virtual ~AST_Template_Module_Inst (void); + virtual ~AST_Template_Module_Inst (); - AST_Template_Module *ref (void) const; + AST_Template_Module *ref () const; FE_Utils::T_ARGLIST const * - template_args (void) const; + template_args () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); diff --git a/TAO/TAO_IDL/include/ast_template_module_ref.h b/TAO/TAO_IDL/include/ast_template_module_ref.h index 30a5b0ee81b..7273bc0e381 100644 --- a/TAO/TAO_IDL/include/ast_template_module_ref.h +++ b/TAO/TAO_IDL/include/ast_template_module_ref.h @@ -15,17 +15,17 @@ public: AST_Template_Module *ref, UTL_StrList *param_refs); - virtual ~AST_Template_Module_Ref (void); + virtual ~AST_Template_Module_Ref (); - AST_Template_Module *ref (void) const; + AST_Template_Module *ref () const; - UTL_StrList *param_refs (void) const; + UTL_StrList *param_refs () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); @@ -39,7 +39,7 @@ public: virtual AST_Decl *adjust_found (bool ignore_fwd, bool full_def_only); /// Accessors for the member. - bool processed (void) const; + bool processed () const; void processed (bool val); static AST_Decl::NodeType const NT; diff --git a/TAO/TAO_IDL/include/ast_type.h b/TAO/TAO_IDL/include/ast_type.h index 9b10b6a2821..5cda580cf1c 100644 --- a/TAO/TAO_IDL/include/ast_type.h +++ b/TAO/TAO_IDL/include/ast_type.h @@ -90,7 +90,7 @@ public: AST_Type (AST_Decl::NodeType nt, UTL_ScopedName *n); - virtual ~AST_Type (void); + virtual ~AST_Type (); virtual bool in_recursion (ACE_Unbounded_Queue<AST_Type *> &list); // Determine if we are involved in some kind of limited recursion. @@ -101,21 +101,21 @@ public: virtual void size_type (SIZE_TYPE); // Set the size type. - virtual SIZE_TYPE size_type (void); + virtual SIZE_TYPE size_type (); // Return our size type. // Accessors/mutators for the private members. - bool has_constructor (void); + bool has_constructor (); // Accessor for protected member. void has_constructor (bool value); // Mutator for protected member. - bool ifr_added (void); + bool ifr_added (); void ifr_added (bool val); - bool ifr_fwd_added (void); + bool ifr_fwd_added (); void ifr_fwd_added (bool val); const char *nested_type_name (AST_Decl *d, @@ -123,10 +123,10 @@ public: const char *prefix = 0); // Type name of a node used when generating declarations. - AST_Type *unaliased_type (void); + AST_Type *unaliased_type (); // Utility function to make sure we are using the unaliased type. - virtual bool legal_for_primary_key (void) const; + virtual bool legal_for_primary_key () const; // Recursively called on valuetype to check for legal use as // a primary key. Overridden for valuetype, struct, sequence, // union, array, typedef, and interface. @@ -135,10 +135,10 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); protected: - virtual int compute_size_type (void); + virtual int compute_size_type (); // Determine our size type and set it if it is unknown. const char *nested_name (const char *local_name, diff --git a/TAO/TAO_IDL/include/ast_typedef.h b/TAO/TAO_IDL/include/ast_typedef.h index cd3d776165c..b1181cb18e8 100644 --- a/TAO/TAO_IDL/include/ast_typedef.h +++ b/TAO/TAO_IDL/include/ast_typedef.h @@ -81,24 +81,24 @@ public: bool local, bool abstract); - virtual ~AST_Typedef (void); + virtual ~AST_Typedef (); - AST_Type *primitive_base_type (void) const; + AST_Type *primitive_base_type () const; // Return the most primitive base type by traversing the chain of typedefed // base types. // Data Accessors. - AST_Type *base_type (void) const; + AST_Type *base_type () const; - virtual bool legal_for_primary_key (void) const; + virtual bool legal_for_primary_key () const; // Recursively called on valuetype to check for legal use as // a primary key. Overridden for valuetype, struct, sequence, // union, array, typedef, and interface. - virtual bool is_local (void); + virtual bool is_local (); // Override the base class method. - bool owns_base_type (void) const; + bool owns_base_type () const; void owns_base_type (bool val); // Sometimes this has to be accessed or managed from outside. @@ -109,7 +109,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; @@ -121,7 +121,7 @@ public: virtual AST_Annotation_Appls &annotations (); protected: - virtual int compute_size_type (void); + virtual int compute_size_type (); // Compute the size type if it is unknown. /** diff --git a/TAO/TAO_IDL/include/ast_union.h b/TAO/TAO_IDL/include/ast_union.h index 4815d0736d8..dafa8e704de 100644 --- a/TAO/TAO_IDL/include/ast_union.h +++ b/TAO/TAO_IDL/include/ast_union.h @@ -84,7 +84,7 @@ public: bool local, bool abstract); - virtual ~AST_Union (void); + virtual ~AST_Union (); // This also calls the base class version. virtual void redefine (AST_Structure *from); @@ -94,9 +94,9 @@ public: // Data Accessors. - AST_ConcreteType *disc_type (void); + AST_ConcreteType *disc_type (); - AST_Expression::ExprType udisc_type (void); + AST_Expression::ExprType udisc_type (); struct DefaultValue { @@ -123,7 +123,7 @@ public: int default_value (DefaultValue &); // Get the default value. - virtual int default_index (void); + virtual int default_index (); // Return the default index used. // AST Dumping. @@ -143,7 +143,7 @@ public: ///} protected: - virtual int compute_size_type (void); + virtual int compute_size_type (); // Compute the size type if it is unknown. virtual AST_UnionBranch *fe_add_union_branch (AST_UnionBranch *b); @@ -165,7 +165,7 @@ private: AST_UnionBranch *lookup_branch (AST_UnionBranch *branch); // Look up the branch with the "default" label. - AST_UnionBranch *lookup_default (void); + AST_UnionBranch *lookup_default (); // Look up a branch given a branch with a label. This is used to // check for duplicate labels. @@ -175,7 +175,7 @@ private: // check for duplicate enum labels. AST_UnionBranch *lookup_enum (AST_UnionBranch *b); - friend int tao_yyparse (void); + friend int tao_yyparse (); friend class ast_visitor_tmpl_module_inst; // Scope Management Protocol. @@ -188,10 +188,10 @@ private: virtual AST_EnumVal *fe_add_enum_val (AST_EnumVal *v); - virtual int compute_default_value (void); + virtual int compute_default_value (); // Compute the default value (if any). - int compute_default_index (void); + int compute_default_index (); // Count the default index. DefaultValue default_value_; diff --git a/TAO/TAO_IDL/include/ast_union_branch.h b/TAO/TAO_IDL/include/ast_union_branch.h index e1427765f7c..988b06811da 100644 --- a/TAO/TAO_IDL/include/ast_union_branch.h +++ b/TAO/TAO_IDL/include/ast_union_branch.h @@ -84,13 +84,13 @@ public: AST_Type *ft, UTL_ScopedName *n); - virtual ~AST_UnionBranch (void); + virtual ~AST_UnionBranch (); - UTL_LabelList *labels (void) const; + UTL_LabelList *labels () const; AST_UnionLabel *label (unsigned long index = 0); - unsigned long label_list_length (void); + unsigned long label_list_length (); // Called if our labels are enum values - adds them to the // enclosing scope's name_referenced list. @@ -110,7 +110,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; diff --git a/TAO/TAO_IDL/include/ast_union_fwd.h b/TAO/TAO_IDL/include/ast_union_fwd.h index 65dc9013a93..14a6121d7e3 100644 --- a/TAO/TAO_IDL/include/ast_union_fwd.h +++ b/TAO/TAO_IDL/include/ast_union_fwd.h @@ -14,10 +14,10 @@ public: AST_UnionFwd (AST_Union *dummy, UTL_ScopedName *n); - virtual ~AST_UnionFwd (void); + virtual ~AST_UnionFwd (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); diff --git a/TAO/TAO_IDL/include/ast_union_label.h b/TAO/TAO_IDL/include/ast_union_label.h index 87f66e08704..28c5e0275f2 100644 --- a/TAO/TAO_IDL/include/ast_union_label.h +++ b/TAO/TAO_IDL/include/ast_union_label.h @@ -87,11 +87,11 @@ public: AST_UnionLabel (UnionLabel lk, AST_Expression *lv); - virtual ~AST_UnionLabel (void); + virtual ~AST_UnionLabel (); - UnionLabel label_kind (void); + UnionLabel label_kind (); - AST_Expression *label_val (void); + AST_Expression *label_val (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -100,7 +100,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); private: // Data. diff --git a/TAO/TAO_IDL/include/ast_uses.h b/TAO/TAO_IDL/include/ast_uses.h index f34d66d4ec5..9da57a5327f 100644 --- a/TAO/TAO_IDL/include/ast_uses.h +++ b/TAO/TAO_IDL/include/ast_uses.h @@ -11,11 +11,11 @@ public: AST_Type *uses_type, bool is_multiple); - virtual ~AST_Uses (void); + virtual ~AST_Uses (); // Data Accessors. - AST_Type *uses_type (void) const; - bool is_multiple (void) const; + AST_Type *uses_type () const; + bool is_multiple () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -24,7 +24,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; diff --git a/TAO/TAO_IDL/include/ast_valuebox.h b/TAO/TAO_IDL/include/ast_valuebox.h index 40e5cc87c50..4ea5ec52eb5 100644 --- a/TAO/TAO_IDL/include/ast_valuebox.h +++ b/TAO/TAO_IDL/include/ast_valuebox.h @@ -10,10 +10,10 @@ public: AST_ValueBox (UTL_ScopedName *n, AST_Type *boxed_type); - virtual ~AST_ValueBox (void); + virtual ~AST_ValueBox (); // Data Accessors. - AST_Type *boxed_type (void) const; + AST_Type *boxed_type () const; // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -22,7 +22,7 @@ public: virtual int ast_accept (ast_visitor *visitor); // Cleanup. - virtual void destroy (void); + virtual void destroy (); static AST_Decl::NodeType const NT; diff --git a/TAO/TAO_IDL/include/ast_valuetype.h b/TAO/TAO_IDL/include/ast_valuetype.h index 4f5583e41b3..9309da49809 100644 --- a/TAO/TAO_IDL/include/ast_valuetype.h +++ b/TAO/TAO_IDL/include/ast_valuetype.h @@ -21,7 +21,7 @@ public: bool truncatable, bool custom); - virtual ~AST_ValueType (void); + virtual ~AST_ValueType (); virtual bool in_recursion (ACE_Unbounded_Queue<AST_Type *> &list); // Are we or the node represented by node involved in recursion. @@ -29,18 +29,18 @@ public: // This also calls the base class version. virtual void redefine (AST_Interface *from); - AST_Type **supports (void) const; + AST_Type **supports () const; - long n_supports (void) const; + long n_supports () const; - AST_Type *inherits_concrete (void) const; + AST_Type *inherits_concrete () const; - AST_Type *supports_concrete (void) const; + AST_Type *supports_concrete () const; - bool truncatable (void) const; - bool custom (void) const; + bool truncatable () const; + bool custom () const; - virtual bool will_have_factory (void); + virtual bool will_have_factory (); // Called from y.tab.cpp to set the factory decl seen bit. // Look up a scoped name in the supported interface list. @@ -55,10 +55,10 @@ public: // Recursively called on valuetype to check for legal use as // a primary key. Overridden for valuetype, struct, sequence, // union, array, typedef, and interface. - virtual bool legal_for_primary_key (void) const; + virtual bool legal_for_primary_key () const; // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &o); @@ -84,7 +84,7 @@ protected: bool derived_from_primary_key_base (const AST_ValueType *node, const AST_ValueType *pk_base) const; - AST_ValueType *lookup_primary_key_base (void) const; + AST_ValueType *lookup_primary_key_base () const; }; #endif // _AST_INTERFACE_AST_VALUETYPE_HH diff --git a/TAO/TAO_IDL/include/ast_valuetype_fwd.h b/TAO/TAO_IDL/include/ast_valuetype_fwd.h index 736271cc50c..6e9e9ce38b4 100644 --- a/TAO/TAO_IDL/include/ast_valuetype_fwd.h +++ b/TAO/TAO_IDL/include/ast_valuetype_fwd.h @@ -12,10 +12,10 @@ public: AST_ValueTypeFwd (AST_Interface *dummy, UTL_ScopedName *n); - virtual ~AST_ValueTypeFwd (void); + virtual ~AST_ValueTypeFwd (); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // AST Dumping. virtual void dump (ACE_OSTREAM_TYPE &); diff --git a/TAO/TAO_IDL/include/ast_visitor.h b/TAO/TAO_IDL/include/ast_visitor.h index 3a45c23a461..70c4fc73f7e 100644 --- a/TAO/TAO_IDL/include/ast_visitor.h +++ b/TAO/TAO_IDL/include/ast_visitor.h @@ -85,7 +85,7 @@ class AST_Annotation_Decl; class TAO_IDL_FE_Export ast_visitor { public: - virtual ~ast_visitor (void); + virtual ~ast_visitor (); virtual int visit_decl (AST_Decl *d) = 0; virtual int visit_scope (UTL_Scope *node) = 0; @@ -143,7 +143,7 @@ public: protected: // For abstract class. - ast_visitor (void); + ast_visitor (); }; #endif /* TAO_IDL_FE_DLL_AST_VISITOR_H */ diff --git a/TAO/TAO_IDL/include/ast_visitor_context.h b/TAO/TAO_IDL/include/ast_visitor_context.h index 2c8ddd419db..7890633316a 100644 --- a/TAO/TAO_IDL/include/ast_visitor_context.h +++ b/TAO/TAO_IDL/include/ast_visitor_context.h @@ -23,18 +23,18 @@ class TAO_IDL_FE_Export ast_visitor_context { public: - ast_visitor_context (void); + ast_visitor_context (); ast_visitor_context (const ast_visitor_context &ctx); - ~ast_visitor_context (void); + ~ast_visitor_context (); // Accessors/mutators for template-related storage. - FE_Utils::T_PARAMLIST_INFO *template_params (void) const; + FE_Utils::T_PARAMLIST_INFO *template_params () const; void template_params (FE_Utils::T_PARAMLIST_INFO *args); - FE_Utils::T_ARGLIST const *template_args (void) const; + FE_Utils::T_ARGLIST const *template_args () const; void template_args (FE_Utils::T_ARGLIST const *args); protected: diff --git a/TAO/TAO_IDL/include/ast_visitor_reifying.h b/TAO/TAO_IDL/include/ast_visitor_reifying.h index 2ad0fdceea1..6c7c5ef2981 100644 --- a/TAO/TAO_IDL/include/ast_visitor_reifying.h +++ b/TAO/TAO_IDL/include/ast_visitor_reifying.h @@ -42,9 +42,9 @@ class ast_visitor_reifying : public ast_visitor public: ast_visitor_reifying (ast_visitor_context *ctx); - virtual ~ast_visitor_reifying (void); + virtual ~ast_visitor_reifying (); - AST_Decl *reified_node (void) const; + AST_Decl *reified_node () const; virtual int visit_decl (AST_Decl *d); virtual int visit_scope (UTL_Scope *node); diff --git a/TAO/TAO_IDL/include/ast_visitor_tmpl_module_inst.h b/TAO/TAO_IDL/include/ast_visitor_tmpl_module_inst.h index c9270d73a14..1a0dafdd241 100644 --- a/TAO/TAO_IDL/include/ast_visitor_tmpl_module_inst.h +++ b/TAO/TAO_IDL/include/ast_visitor_tmpl_module_inst.h @@ -38,7 +38,7 @@ public: ast_visitor_tmpl_module_inst (ast_visitor_context *ctx, bool ref_only = false); - virtual ~ast_visitor_tmpl_module_inst (void); + virtual ~ast_visitor_tmpl_module_inst (); virtual int visit_decl (AST_Decl *d); virtual int visit_scope (UTL_Scope *node); diff --git a/TAO/TAO_IDL/include/ast_visitor_tmpl_module_ref.h b/TAO/TAO_IDL/include/ast_visitor_tmpl_module_ref.h index 4b45f2a5abf..9ac63d648f9 100644 --- a/TAO/TAO_IDL/include/ast_visitor_tmpl_module_ref.h +++ b/TAO/TAO_IDL/include/ast_visitor_tmpl_module_ref.h @@ -29,7 +29,7 @@ class ast_visitor_tmpl_module_ref public: ast_visitor_tmpl_module_ref (ast_visitor_context *ctx); - virtual ~ast_visitor_tmpl_module_ref (void); + virtual ~ast_visitor_tmpl_module_ref (); virtual int visit_template_module_ref (AST_Template_Module_Ref *node); }; diff --git a/TAO/TAO_IDL/include/drv_extern.h b/TAO/TAO_IDL/include/drv_extern.h index 757d14db7e1..03a543b161f 100644 --- a/TAO/TAO_IDL/include/drv_extern.h +++ b/TAO/TAO_IDL/include/drv_extern.h @@ -67,17 +67,17 @@ trademarks or registered trademarks of Sun Microsystems, Inc. // External functions for the IDL compiler driver program. extern void DRV_parse_args (long, char **); -extern void DRV_usage (void); +extern void DRV_usage (); extern void DRV_pre_proc (char const * myfile); -extern void DRV_store_env_include_paths (void); -extern void DRV_cpp_init (void); +extern void DRV_store_env_include_paths (); +extern void DRV_cpp_init (); extern ACE_CString& DRV_add_include_path (ACE_CString&, const char* p, const char* suffix, bool is_system); -extern void DRV_cpp_post_init (void); +extern void DRV_cpp_post_init (); extern void DRV_cpp_putarg (char const * str); extern void DRV_cpp_new_location (char const * new_loc); -extern void DRV_get_orb_idl_includes (void); +extern void DRV_get_orb_idl_includes (); // Not used by all backends. extern void DRV_push_file (char const * s); diff --git a/TAO/TAO_IDL/include/fe_component_header.h b/TAO/TAO_IDL/include/fe_component_header.h index 4e14c6426d4..55280e7ade4 100644 --- a/TAO/TAO_IDL/include/fe_component_header.h +++ b/TAO/TAO_IDL/include/fe_component_header.h @@ -20,14 +20,14 @@ public: UTL_ScopedName *base_component, UTL_NameList *supports, bool compile_now); - virtual ~FE_ComponentHeader (void); + virtual ~FE_ComponentHeader (); // Data Accessors. - AST_Component *base_component (void) const; - AST_Type **supports (void) const; - long n_supports (void) const; - AST_Interface **supports_flat (void) const; - long n_supports_flat (void) const; + AST_Component *base_component () const; + AST_Type **supports () const; + long n_supports () const; + AST_Interface **supports_flat () const; + long n_supports_flat () const; protected: void compile_inheritance (UTL_ScopedName *base_component); diff --git a/TAO/TAO_IDL/include/fe_declarator.h b/TAO/TAO_IDL/include/fe_declarator.h index d55d8c3a735..98f5ce06a95 100644 --- a/TAO/TAO_IDL/include/fe_declarator.h +++ b/TAO/TAO_IDL/include/fe_declarator.h @@ -86,19 +86,19 @@ public: FE_Declarator (UTL_ScopedName *n, DeclaratorType dt, AST_Decl *cp); - virtual ~FE_Declarator (void) {} + virtual ~FE_Declarator () {} // Data Accessors. - AST_Decl *complex_part (void); - UTL_ScopedName *name (void); - DeclaratorType decl_type (void); + AST_Decl *complex_part (); + UTL_ScopedName *name (); + DeclaratorType decl_type (); // Other Operations. // Compose an FE_Declarator into an AST_Type once all the needed information // is available. AST_Type *compose (AST_Decl* tc); - virtual void destroy (void); + virtual void destroy (); private: // Data. diff --git a/TAO/TAO_IDL/include/fe_extern.h b/TAO/TAO_IDL/include/fe_extern.h index 47f95a109c5..206f1ed679e 100644 --- a/TAO/TAO_IDL/include/fe_extern.h +++ b/TAO/TAO_IDL/include/fe_extern.h @@ -71,15 +71,15 @@ trademarks or registered trademarks of Sun Microsystems, Inc. // Declares all global functions for the FE -TAO_IDL_FE_Export void FE_init (void); -TAO_IDL_FE_Export void FE_populate (void); +TAO_IDL_FE_Export void FE_init (); +TAO_IDL_FE_Export void FE_populate (); TAO_IDL_FE_Export void FE_extract_env_include_paths (ACE_Unbounded_Queue<ACE_CString> &list); -TAO_IDL_FE_Export void FE_store_env_include_paths (void); -TAO_IDL_FE_Export const char *FE_get_cpp_loc_from_env (void); -TAO_IDL_FE_Export const char *FE_get_cpp_args_from_env (void); +TAO_IDL_FE_Export void FE_store_env_include_paths (); +TAO_IDL_FE_Export const char *FE_get_cpp_loc_from_env (); +TAO_IDL_FE_Export const char *FE_get_cpp_args_from_env (); TAO_IDL_FE_Export int -FE_yyparse (void); +FE_yyparse (); TAO_IDL_FE_Export void FE_yydebug (bool); @@ -97,10 +97,10 @@ class UTL_Error; class UTL_Indenter; TAO_IDL_FE_Export UTL_Error * -FE_new_UTL_Error (void); +FE_new_UTL_Error (); TAO_IDL_FE_Export UTL_Indenter * -FE_new_UTL_Indenter (void); +FE_new_UTL_Indenter (); /** * Exception thrown when exiting prematurely in the front end. diff --git a/TAO/TAO_IDL/include/fe_home_header.h b/TAO/TAO_IDL/include/fe_home_header.h index 7583a75a398..ae13bc609cc 100644 --- a/TAO/TAO_IDL/include/fe_home_header.h +++ b/TAO/TAO_IDL/include/fe_home_header.h @@ -23,12 +23,12 @@ public: UTL_ScopedName *managed_component, UTL_ScopedName *primary_key); - virtual ~FE_HomeHeader (void); + virtual ~FE_HomeHeader (); // Data Accessors. - AST_Home *base_home (void) const; - AST_Component *managed_component (void) const; - AST_Type *primary_key (void) const; + AST_Home *base_home () const; + AST_Component *managed_component () const; + AST_Type *primary_key () const; protected: AST_Home *base_home_; diff --git a/TAO/TAO_IDL/include/fe_interface_header.h b/TAO/TAO_IDL/include/fe_interface_header.h index 243e5dda333..55394c44e90 100644 --- a/TAO/TAO_IDL/include/fe_interface_header.h +++ b/TAO/TAO_IDL/include/fe_interface_header.h @@ -84,22 +84,22 @@ public: bool is_abstract, bool compile_now); - virtual ~FE_InterfaceHeader (void); + virtual ~FE_InterfaceHeader (); // Data Accessors. - UTL_ScopedName *name (void) const; - AST_Type **inherits (void) const; - long n_inherits (void) const; - AST_Interface **inherits_flat (void) const; - long n_inherits_flat (void) const; + UTL_ScopedName *name () const; + AST_Type **inherits () const; + long n_inherits () const; + AST_Interface **inherits_flat () const; + long n_inherits_flat () const; - bool is_local (void) const; + bool is_local () const; // See if we are a local interface. - bool is_abstract (void) const; + bool is_abstract () const; // See if we are an abstract interface. - virtual void destroy (void); + virtual void destroy (); // Destroy anything allocated for this class. // Operations. @@ -121,9 +121,9 @@ protected: bool already_seen (AST_Type *ip); bool already_seen_flat (AST_Interface *ip); - void install_in_header (void); + void install_in_header (); - void destroy_flat_arrays (void); + void destroy_flat_arrays (); // Data. protected: diff --git a/TAO/TAO_IDL/include/fe_obv_header.h b/TAO/TAO_IDL/include/fe_obv_header.h index 0a25d4310c1..0dc51b91176 100644 --- a/TAO/TAO_IDL/include/fe_obv_header.h +++ b/TAO/TAO_IDL/include/fe_obv_header.h @@ -18,16 +18,16 @@ public: UTL_NameList *supports, bool truncatable, bool is_eventtype = false); - virtual ~FE_OBVHeader (void); + virtual ~FE_OBVHeader (); // Data Accessors. - AST_Type **supports (void) const; - long n_supports (void) const; - AST_Type *inherits_concrete (void) const; - AST_Type *supports_concrete (void) const; - bool truncatable (void) const; + AST_Type **supports () const; + long n_supports () const; + AST_Type *inherits_concrete () const; + AST_Type *supports_concrete () const; + bool truncatable () const; - virtual void destroy (void); + virtual void destroy (); // Destroy anything allocated for this class. protected: diff --git a/TAO/TAO_IDL/include/fe_utils.h b/TAO/TAO_IDL/include/fe_utils.h index 6cf66a62418..fddc6e5202d 100644 --- a/TAO/TAO_IDL/include/fe_utils.h +++ b/TAO/TAO_IDL/include/fe_utils.h @@ -27,7 +27,7 @@ struct TAO_IDL_FE_Export FE_Utils ACE_CString name_; ACE_CString seq_param_ref_; - T_Param_Info (void); + T_Param_Info (); }; typedef ACE_Unbounded_Queue<T_Param_Info> T_PARAMLIST_INFO; @@ -36,7 +36,7 @@ struct TAO_IDL_FE_Export FE_Utils struct T_ARGLIST : ACE_Unbounded_Queue<AST_Decl *> { - void destroy (void); + void destroy (); }; /// Convert from a predefined type to an expression type. @@ -68,7 +68,7 @@ struct TAO_IDL_FE_Export FE_Utils /// For the executor IDL file, when a pragma ciao ami receptacle /// name is multiplex. static void - create_implied_ami_uses_stuff (void); + create_implied_ami_uses_stuff (); /// Case insensitive for Windows, otherwise not. static int @@ -97,7 +97,7 @@ struct TAO_IDL_FE_Export FE_Utils /// Validate the included idl files, somefiles might have been /// ignored by the preprocessor. static void - validate_included_idl_files (void); + validate_included_idl_files (); /// Check if included file is in TAO specific include dirs. static bool diff --git a/TAO/TAO_IDL/include/idl_global.h b/TAO/TAO_IDL/include/idl_global.h index d00dffdcbd8..485486a60dd 100644 --- a/TAO/TAO_IDL/include/idl_global.h +++ b/TAO/TAO_IDL/include/idl_global.h @@ -311,77 +311,77 @@ public: UNKNOWN_ANNOTATIONS_IGNORE }; - IDL_GlobalData (void); - ~IDL_GlobalData (void); + IDL_GlobalData (); + ~IDL_GlobalData (); // Operations - UTL_ScopeStack &scopes (void); // Scopes stack + UTL_ScopeStack &scopes (); // Scopes stack - AST_Root *root (void); // Root of AST + AST_Root *root (); // Root of AST void set_root (AST_Root *); // Set it - AST_Generator *gen (void); // Generator + AST_Generator *gen (); // Generator void set_gen (AST_Generator *); // Set it - AST_ValueType *primary_key_base (void); // PrimaryKeyBase + AST_ValueType *primary_key_base (); // PrimaryKeyBase void primary_key_base (AST_ValueType *); // Set it - UTL_Error *err (void); // Error reporter + UTL_Error *err (); // Error reporter void set_err (UTL_Error *); // Set it - int err_count (void); // How many errors? + int err_count (); // How many errors? void set_err_count (int); // Set it - long lineno (void); // Where in file? + long lineno (); // Where in file? void set_lineno (long); // Set it - UTL_String *filename (void); // What file? + UTL_String *filename (); // What file? void set_filename (UTL_String *); // Set it - UTL_String *main_filename (void); // What's the main + UTL_String *main_filename (); // What's the main // file name? void set_main_filename (UTL_String *); // Set it - UTL_String *real_filename (void); // What's the real + UTL_String *real_filename (); // What's the real // file name? void set_real_filename (UTL_String *); // Set it - UTL_String *stripped_filename (void); // Stripped filename + UTL_String *stripped_filename (); // Stripped filename void set_stripped_filename (UTL_String *); // Set it - bool imported (void); // Are we imported? - bool import (void); // Is import on? + bool imported (); // Are we imported? + bool import (); // Is import on? void set_import (bool); // Set it - bool in_main_file (void); // Are we? + bool in_main_file (); // Are we? void set_in_main_file (bool); // Set it - const char *prog_name (void); // Invoked as.. + const char *prog_name (); // Invoked as.. void set_prog_name (const char *); // Set it - const char *cpp_location (void); // Where's CPP? + const char *cpp_location (); // Where's CPP? void set_cpp_location (const char *);// Set it - long compile_flags (void); // What flags are on? + long compile_flags (); // What flags are on? void set_compile_flags (long); // Turn some on or off - char *local_escapes (void); // Get local escapes + char *local_escapes (); // Get local escapes void set_local_escapes (const char *);// Set it - UTL_Indenter *indent (void); // Get indenter + UTL_Indenter *indent (); // Get indenter void set_indent (UTL_Indenter *); // Set it void store_include_file_name (UTL_String *); - UTL_String **include_file_names (void); // Array of file names + UTL_String **include_file_names (); // Array of file names void set_include_file_names (UTL_String **); // Set it - unsigned long n_include_file_names (void); // How many + unsigned long n_include_file_names (); // How many void set_n_include_file_names (unsigned long n); - void reset_flag_seen (void); + void reset_flag_seen (); // = Types & methods supporting DDS DCPS sequence definitions (from #pragma) typedef ACE_Unbounded_Queue<char *> DCPS_Sequence_Types_List; @@ -418,7 +418,7 @@ public: void dcps_support_zero_copy_read (bool value); // BE calls to check the status of zero-copy read support - bool dcps_support_zero_copy_read (void) const; + bool dcps_support_zero_copy_read () const; // FE calls when #pragma DCPS_DATA_SEQUENCE_TYPE is processed void set_dcps_sequence_type (const char* seq_type); @@ -430,7 +430,7 @@ public: void dcps_gen_zero_copy_read (bool value); // BE calls to check the status of zero-copy read support - bool dcps_gen_zero_copy_read (void) const; + bool dcps_gen_zero_copy_read () const; // = Access methods to deal with other IDL files included in the main // IDL file. These IDL files are exactly the same strings that are @@ -441,20 +441,20 @@ public: void add_to_included_idl_files (const char *file_name); // Get all the files. - char** included_idl_files (void); + char** included_idl_files (); // The number of currently availabe include files. - size_t n_included_idl_files (void); + size_t n_included_idl_files (); // Set the number of included_idl_files. Use this carefully. This // method is used when we validate all the #included idl files, // against the ones that we get after preprocessing. void n_included_idl_files (size_t n); - ParseState parse_state (void); // What state we're in + ParseState parse_state (); // What state we're in void set_parse_state (ParseState s); // Set it - UTL_String *idl_src_file (void); + UTL_String *idl_src_file (); // Returns the IDL source file being compiled. void idl_src_file (UTL_String *); @@ -465,7 +465,7 @@ public: // files. By default, IDL compiler looks for TEMP env variable and // if it is not set, "/tmp/" is assigned. - const char *temp_dir (void) const; + const char *temp_dir () const; // Get the directory where the IDL compiler can keep all its temp // files. By default, IDL compiler looks for TEMP env variable and // if it is not set, "/tmp/" is assigned. @@ -473,49 +473,49 @@ public: void tao_root (const char *s); // Set the path of TAO_ROOT. - const char *tao_root (void) const; + const char *tao_root () const; // Get the path for TAO_ROOT. void gperf_path (const char *s); // Set the path for the perfect hashing program (GPERF). - const char *gperf_path (void) const; + const char *gperf_path () const; // Get the path for the perfect hashing program (GPERF). void ident_string (const char *s); // Set the value of the #ident string. - const char *ident_string (void) const; + const char *ident_string () const; // Get the value of the #ident string. void case_diff_error (bool); // report an error (1) for indentifiers in the same scope // that differ only by case, or report a warning (0). - bool case_diff_error (void); + bool case_diff_error (); // are we strict about case-only differences or not? void nest_orb (bool); // Set on or off whether we are using the NEST ORB. - bool nest_orb (void); + bool nest_orb (); // are we beIng used with the NEST ORB? - void destroy (void); + void destroy (); // Cleanup function. void append_idl_flag (const char *s); // Save each flag passed to the IDL compiler. - const char *idl_flags (void) const; + const char *idl_flags () const; // Get a string representation of the flags // passed to the idl compiler. ACE_Hash_Map_Manager<ACE_CString, int, ACE_Null_Mutex> & - idl_keywords (void); + idl_keywords (); // Accessor for the IDL keyword container. - ACE_Unbounded_Stack<char *> & pragma_prefixes (void); + ACE_Unbounded_Stack<char *> & pragma_prefixes (); // Accessor for the pragma prefix container. void update_prefix (char *filename); @@ -524,11 +524,11 @@ public: long seen_include_file_before (char *); // Seen this include before? - long last_seen_index (void) const; + long last_seen_index () const; void last_seen_index (long val); // Accessors for last_seen_index_ member. - bool preserve_cpp_keywords (void); + bool preserve_cpp_keywords (); // Whether we should not mung idl element names that are // C++ keywords e.g. delete, operator etc. with _cxx_ prefix. // Should be true when being used by the IFR Service @@ -543,98 +543,98 @@ public: // specific paths and false for paths provided by user. void add_rel_include_path (const char *s); - ACE_Unbounded_Queue<char *> const & rel_include_paths (void) const; + ACE_Unbounded_Queue<char *> const & rel_include_paths () const; // Accessor/mutator for the rel_include_paths_ member. void add_ciao_lem_file_names (const char *s); - ACE_Unbounded_Queue<char *> & ciao_lem_file_names (void); + ACE_Unbounded_Queue<char *> & ciao_lem_file_names (); // Accessor/mutator for the ciao_lem_file_names_ member. void add_ciao_rti_ts_file_names (const char *s); - ACE_Unbounded_Queue<char *> & ciao_rti_ts_file_names (void); + ACE_Unbounded_Queue<char *> & ciao_rti_ts_file_names (); // Accessor/mutator for the ciao_rti_ts_file_names_ member. void add_ciao_spl_ts_file_names (const char *s); - ACE_Unbounded_Queue<char *> & ciao_spl_ts_file_names (void); + ACE_Unbounded_Queue<char *> & ciao_spl_ts_file_names (); // Accessor/mutator for the ciao_spl_ts_file_names_ member. void add_ciao_oci_ts_file_names (const char *s); - ACE_Unbounded_Queue<char *> & ciao_oci_ts_file_names (void); + ACE_Unbounded_Queue<char *> & ciao_oci_ts_file_names (); // Accessor/mutator for the ciao_oci_ts_file_names_ member. void add_ciao_coredx_ts_file_names (const char *s); - ACE_Unbounded_Queue<char *> & ciao_coredx_ts_file_names (void); + ACE_Unbounded_Queue<char *> & ciao_coredx_ts_file_names (); // Accessor/mutator for the ciao_coredx_ts_file_names_ member. void add_ciao_ami_iface_names (const char *s); - ACE_Unbounded_Queue<char *> & ciao_ami_iface_names (void); + ACE_Unbounded_Queue<char *> & ciao_ami_iface_names (); // Accessor/mutator for the ciao_ami_iface_names_ member. void add_ciao_ami_recep_names (const char *s); - ACE_Unbounded_Queue<char *> & ciao_ami_recep_names (void); + ACE_Unbounded_Queue<char *> & ciao_ami_recep_names (); // Accessor/mutator for the ciao_ami_recep_names_ member. void add_included_ami_recep_names (const char *s); - ACE_Unbounded_Queue<char *> & included_ami_recep_names (void); + ACE_Unbounded_Queue<char *> & included_ami_recep_names (); // Accessor/mutator for the included_ami_recep_names_ member. - bool included_ami_receps_done (void) const; + bool included_ami_receps_done () const; void included_ami_receps_done (bool val); void add_ciao_ami_idl_fnames (const char *s); - ACE_Unbounded_Queue<char *> & ciao_ami_idl_fnames (void); + ACE_Unbounded_Queue<char *> & ciao_ami_idl_fnames (); // Accessor/mutator for the included_ami_idl_fnames_ member. void add_dds4ccm_impl_fnames (const char *s); - ACE_Unbounded_Queue<char *> & dds4ccm_impl_fnames (void); + ACE_Unbounded_Queue<char *> & dds4ccm_impl_fnames (); // Accessor mutator for the dds4ccm_impl_fnames_ member. - ACE_Unbounded_Queue<AST_Interface *> & mixed_parentage_interfaces (void); + ACE_Unbounded_Queue<AST_Interface *> & mixed_parentage_interfaces (); // Accessor for the member ACE_Hash_Map_Manager<char *, char *, ACE_Null_Mutex> & - file_prefixes (void); + file_prefixes (); // Accessor for the IDL file prefix container. - bool pass_orb_idl (void) const; + bool pass_orb_idl () const; void pass_orb_idl (bool val); // Accessor for the pass_orb_idl_ member. - bool using_ifr_backend (void) const; + bool using_ifr_backend () const; void using_ifr_backend (bool val); // Accessor for the using_ifr_backend_ member. - bool ignore_idl3 (void) const; + bool ignore_idl3 () const; void ignore_idl3 (bool val); // Accessor for the ignore_idl3_ member. - int check_gperf (void); + int check_gperf (); // Currently called only from IDL backend, but could be useful elsewhere. - void fini (void); + void fini (); // Do final cleanup just before process exits. - ACE_Unbounded_Queue<AST_ValueType *> &primary_keys (void); + ACE_Unbounded_Queue<AST_ValueType *> &primary_keys (); // Accessor for the member. - void check_primary_keys (void); + void check_primary_keys (); // Called affer yy_parse() returns - iterates over our list // of primary keys. Must be called this late so that we can // be sure that all forward declared stucts or unions that // might be used in such a valuetype are fully defined. - const char *recursion_start (void) const; + const char *recursion_start () const; void recursion_start (const char *val); // Accessors for the member. - bool multi_file_input (void) const; + bool multi_file_input () const; void multi_file_input (bool val); // Accessors for the member. - const char *big_file_name (void) const; + const char *big_file_name () const; // Just get the const string. - FE_Utils::T_PARAMLIST_INFO const *current_params (void) const; + FE_Utils::T_PARAMLIST_INFO const *current_params () const; void current_params (FE_Utils::T_PARAMLIST_INFO *params); // Accessors for the member. If UTL_Scope::lookup_by_name() // has a 0 result, it will check this param list (if it is not @@ -643,14 +643,14 @@ public: // referenced template parameter of the eclosing template // module. - UTL_StrList const *alias_params (void) const; + UTL_StrList const *alias_params () const; void alias_params (UTL_StrList *params); // Accessors for the member. If we are parsing a template // module reference, we traverse the scope of the referenced // template module, but create param holders with the // alias names. - UTL_StrList const *for_new_holder (void) const; + UTL_StrList const *for_new_holder () const; void for_new_holder (UTL_StrList *params); // Accessors for the member. If a lookup matches something // from current_params(), the actual created param holder must @@ -661,7 +661,7 @@ public: static char* translateName (const char* name, char *name_buf); #endif - AST_Module *corba_module (void) const; + AST_Module *corba_module () const; void corba_module (AST_Module *m); // Accessors for the member. @@ -676,7 +676,7 @@ public: typedef ACE_Unbounded_Queue_Iterator<Include_Path_Info> Unbounded_Paths_Queue_Iterator; - Unbounded_Paths_Queue &include_paths (void); + Unbounded_Paths_Queue &include_paths (); // Accessor for the member. enum ANON_TYPE_DIAGNOSTIC @@ -694,20 +694,20 @@ public: /// Has anon_type_diagnostic () been called? bool explicit_anon_type_diagnostic () const; - bool anon_error (void) const; - bool anon_warning (void) const; - bool anon_silent (void) const; + bool anon_error () const; + bool anon_warning () const; + bool anon_silent () const; // Simple checks for the value of anon_type_diagnostic_. - bool in_typedef (void) const; + bool in_typedef () const; void in_typedef (bool val); // Accessors for the member. - bool in_tmpl_mod_no_alias (void) const; + bool in_tmpl_mod_no_alias () const; void in_tmpl_mod_no_alias (bool val); // Accessors for the member. - bool in_tmpl_mod_alias (void) const; + bool in_tmpl_mod_alias () const; void in_tmpl_mod_alias (bool val); // Accessors for the member. diff --git a/TAO/TAO_IDL/include/utl_decllist.h b/TAO/TAO_IDL/include/utl_decllist.h index 5f0528977bf..ab2818f9bf8 100644 --- a/TAO/TAO_IDL/include/utl_decllist.h +++ b/TAO/TAO_IDL/include/utl_decllist.h @@ -88,10 +88,10 @@ public: UTL_DeclList *cdr); // Get element - FE_Declarator *head (void); + FE_Declarator *head (); // Cleanup. - virtual void destroy (void); + virtual void destroy (); private: // Data @@ -109,7 +109,7 @@ public: UTL_DecllistActiveIterator (UTL_DeclList *s); // Get current item - FE_Declarator *item (void); + FE_Declarator *item (); }; #endif // _UTL_DECLLIST_UTL_DECLLIST_HH diff --git a/TAO/TAO_IDL/include/utl_err.h b/TAO/TAO_IDL/include/utl_err.h index b80970dbe42..4fc0afe033e 100644 --- a/TAO/TAO_IDL/include/utl_err.h +++ b/TAO/TAO_IDL/include/utl_err.h @@ -245,7 +245,7 @@ public: void version_syntax_error (const char *msg); // Repost an attempt to reset the version. - void version_reset_error (void); + void version_reset_error (); // Report an attempt to change the id once set. void id_reset_error (const char *o, @@ -381,7 +381,7 @@ public: // Report illegal infix operator error (they can be used // only with integer, floating point or fixed point expressions. - void illegal_infix (void); + void illegal_infix (); // Report local type used in remote operation. void local_remote_mismatch (AST_Decl *l, @@ -411,7 +411,7 @@ public: AST_Decl *loc); // Error (default) or warning (set by command line option). - void anonymous_type_diagnostic (void); + void anonymous_type_diagnostic (); // Reference to an item in the scope of a template // module was not via an alias. diff --git a/TAO/TAO_IDL/include/utl_exceptlist.h b/TAO/TAO_IDL/include/utl_exceptlist.h index a04f6276994..5ba9bbbcfb7 100644 --- a/TAO/TAO_IDL/include/utl_exceptlist.h +++ b/TAO/TAO_IDL/include/utl_exceptlist.h @@ -84,14 +84,14 @@ public: UTL_ExceptList *cdr); // Get list item. - AST_Type *head (void); + AST_Type *head (); // Cleanup. - virtual void destroy (void); + virtual void destroy (); // Copies the UTL_ExceptList pointers but not the // contained AST_Exceptions. - virtual UTL_ExceptList *copy (void); + virtual UTL_ExceptList *copy (); private: // Data. @@ -106,7 +106,7 @@ public: UTL_ExceptlistActiveIterator (UTL_ExceptList *s); // Get current item - AST_Type *item (void); + AST_Type *item (); }; #endif // _UTL_EXCEPTLIST_UTL_EXCEPTLIST_HH diff --git a/TAO/TAO_IDL/include/utl_exprlist.h b/TAO/TAO_IDL/include/utl_exprlist.h index 3a7f8ebc875..21ff96e039f 100644 --- a/TAO/TAO_IDL/include/utl_exprlist.h +++ b/TAO/TAO_IDL/include/utl_exprlist.h @@ -84,10 +84,10 @@ public: UTL_ExprList *cdr); // Get list item. - AST_Expression *head (void); + AST_Expression *head (); // Cleanup. - virtual void destroy (void); + virtual void destroy (); private: // Data. @@ -101,7 +101,7 @@ public: UTL_ExprlistActiveIterator (UTL_ExprList *s); // Get current item. - AST_Expression *item (void); + AST_Expression *item (); }; #endif // _UTL_EXPRLIST_UTL_EXPRLIST_HH diff --git a/TAO/TAO_IDL/include/utl_identifier.h b/TAO/TAO_IDL/include/utl_identifier.h index bae3e637400..85ceadbf06d 100644 --- a/TAO/TAO_IDL/include/utl_identifier.h +++ b/TAO/TAO_IDL/include/utl_identifier.h @@ -72,7 +72,7 @@ trademarks or registered trademarks of Sun Microsystems, Inc. class TAO_IDL_FE_Export Identifier { public: - Identifier (void); + Identifier (); // Default Constructor. Identifier (const char *s); @@ -80,7 +80,7 @@ public: Identifier (const Identifier &other); - virtual ~Identifier (void); + virtual ~Identifier (); // Destructor. // Operations @@ -89,7 +89,7 @@ public: * Get the underlying string. */ ///{ - char *get_string (void); + char *get_string (); const char *get_string () const; ///} @@ -107,16 +107,16 @@ public: bool case_compare_quiet (Identifier *other); // Like the above but suppressing error or warning I/O - Identifier *copy (void); + Identifier *copy (); // Create a deep copy. - bool escaped (void) const; + bool escaped () const; // Accessor for the member. virtual void dump (ACE_OSTREAM_TYPE &o); // Dump to an ostream. - virtual void destroy (void); + virtual void destroy (); // Cleanup function. bool operator== (const Identifier &other) const; diff --git a/TAO/TAO_IDL/include/utl_idlist.h b/TAO/TAO_IDL/include/utl_idlist.h index ea59e45aca8..a382a35963e 100644 --- a/TAO/TAO_IDL/include/utl_idlist.h +++ b/TAO/TAO_IDL/include/utl_idlist.h @@ -90,25 +90,25 @@ public: UTL_IdList *cdr); // Constructor(s) - virtual ~UTL_IdList (void) {} + virtual ~UTL_IdList () {} // destructor virtual void dump (ACE_OSTREAM_TYPE &o); // Dump to ostream. - virtual void destroy (void); + virtual void destroy (); // Cleanup function. - virtual UTL_IdList *copy (void); + virtual UTL_IdList *copy (); // Copy the list. - Identifier *head (void); + Identifier *head (); // Get element. - Identifier *last_component (void); + Identifier *last_component (); // Get last element in this list. - Identifier *first_component (void); + Identifier *first_component (); // Get first element in this list holding a non-empty string. int compare (UTL_IdList *other); @@ -141,7 +141,7 @@ public: UTL_IdListActiveIterator (UTL_IdList *s); /// Retrieves the next item. - Identifier *item (void); + Identifier *item (); }; #endif // _UTL_IDLIST_UTL_IDLIST_HH diff --git a/TAO/TAO_IDL/include/utl_indenter.h b/TAO/TAO_IDL/include/utl_indenter.h index 8fe36f5b7db..da328055426 100644 --- a/TAO/TAO_IDL/include/utl_indenter.h +++ b/TAO/TAO_IDL/include/utl_indenter.h @@ -78,17 +78,17 @@ class UTL_Indenter // =DESCRIPTION // useful in generating indented output public: - UTL_Indenter (void); + UTL_Indenter (); - ~UTL_Indenter (void) {} + ~UTL_Indenter () {} - void reset (void); + void reset (); // Reset indentation level to 0. - void increase (void); + void increase (); // Increase indentation level. - void decrease (void); + void decrease (); // Decrease indentation level. void skip_to (ACE_OSTREAM_TYPE &o); diff --git a/TAO/TAO_IDL/include/utl_labellist.h b/TAO/TAO_IDL/include/utl_labellist.h index 161b294503f..d2e71a94204 100644 --- a/TAO/TAO_IDL/include/utl_labellist.h +++ b/TAO/TAO_IDL/include/utl_labellist.h @@ -84,13 +84,13 @@ public: UTL_LabelList *cdr); // Get list item. - AST_UnionLabel *head (void); + AST_UnionLabel *head (); // Override of base class method. - virtual UTL_LabelList *copy (void); + virtual UTL_LabelList *copy (); // Cleanup. - virtual void destroy (void); + virtual void destroy (); private: AST_UnionLabel *pd_car_data; @@ -103,7 +103,7 @@ public: UTL_LabellistActiveIterator (UTL_LabelList *source); // Get current item. - AST_UnionLabel *item (void); + AST_UnionLabel *item (); }; #endif // _UTL_LABELLIST_UTL_LABELLIST_HH diff --git a/TAO/TAO_IDL/include/utl_list.h b/TAO/TAO_IDL/include/utl_list.h index 7e7ed5d781f..a70b9d0ff5d 100644 --- a/TAO/TAO_IDL/include/utl_list.h +++ b/TAO/TAO_IDL/include/utl_list.h @@ -85,25 +85,25 @@ class TAO_IDL_FE_Export UTL_List public: UTL_List (UTL_List *c); - virtual ~UTL_List (void); + virtual ~UTL_List (); // Smash last cdr pointer in "this" with l. void nconc (UTL_List *l); // Copy the list starting at "this". - virtual UTL_List *copy (void); + virtual UTL_List *copy (); // Get next list. - UTL_List *tail (void); + UTL_List *tail (); // Set next list void set_tail (UTL_List *l); // How long is this list? - ACE_CDR::Long length (void); + ACE_CDR::Long length (); // Cleanup. - virtual void destroy (void); + virtual void destroy (); private: // The next list. @@ -123,13 +123,13 @@ public: UTL_ListActiveIterator (UTL_List *s); - virtual ~UTL_ListActiveIterator (void) {} + virtual ~UTL_ListActiveIterator () {} // Get next list. - virtual void next (void); + virtual void next (); // Are we at the end of this list? - virtual bool is_done (void); + virtual bool is_done (); protected: // On what to iterate? diff --git a/TAO/TAO_IDL/include/utl_namelist.h b/TAO/TAO_IDL/include/utl_namelist.h index 46b946faa5b..2a1d7ab02af 100644 --- a/TAO/TAO_IDL/include/utl_namelist.h +++ b/TAO/TAO_IDL/include/utl_namelist.h @@ -82,14 +82,14 @@ public: UTL_NameList *cdr); // Get list item. - UTL_ScopedName *head (void); + UTL_ScopedName *head (); // Accessors. - bool truncatable (void) const; + bool truncatable () const; void truncatable (bool val); // Cleanup. - virtual void destroy (void); + virtual void destroy (); private: // List item. @@ -106,7 +106,7 @@ public: UTL_NamelistActiveIterator (UTL_NameList *source); // Get current item. - UTL_ScopedName *item (void); + UTL_ScopedName *item (); }; #endif // _UTL_NAMELIST_UTL_NAMELIST_HH diff --git a/TAO/TAO_IDL/include/utl_scope.h b/TAO/TAO_IDL/include/utl_scope.h index 658c2be463b..1b1a5c41e54 100644 --- a/TAO/TAO_IDL/include/utl_scope.h +++ b/TAO/TAO_IDL/include/utl_scope.h @@ -155,14 +155,14 @@ public: // Operations. // Constructor(s). - UTL_Scope (void); + UTL_Scope (); UTL_Scope (AST_Decl::NodeType nt); // Destructor. - virtual ~UTL_Scope (void); + virtual ~UTL_Scope (); // Data Accessors. - AST_Decl::NodeType scope_node_type (void) + AST_Decl::NodeType scope_node_type () { return pd_scope_node_type; } @@ -206,7 +206,7 @@ public: AST_Decl *&final_parent_decl); // How many entries are used? - virtual unsigned long nmembers (void); + virtual unsigned long nmembers (); // If the Identifier string (from the scoped name which has been // already determined to be of length 1) matches a param, @@ -227,11 +227,11 @@ public: void add_to_name_referenced (Identifier *id); // Accessors for the has_prefix_ member. - bool has_prefix (void); + bool has_prefix (); void has_prefix (bool val); // Cleanup function. - virtual void destroy (void); + virtual void destroy (); // Visiting. virtual int ast_accept (ast_visitor *visitor); @@ -533,19 +533,19 @@ public: UTL_Scope::ScopeIterationKind ik); // Advance to next item. - void next (void); + void next (); // Get current item. - AST_Decl *item (void); + AST_Decl *item (); // Have we iterated over entire scope? - bool is_done (void); + bool is_done (); // What kind of iterator is this? - UTL_Scope::ScopeIterationKind iteration_kind (void); + UTL_Scope::ScopeIterationKind iteration_kind (); // What stage are we in with this iterator? - UTL_Scope::ScopeIterationKind iteration_stage (void); + UTL_Scope::ScopeIterationKind iteration_stage (); private: // Scope to iterate over. diff --git a/TAO/TAO_IDL/include/utl_stack.h b/TAO/TAO_IDL/include/utl_stack.h index d83159b6db7..ffc7f909668 100644 --- a/TAO/TAO_IDL/include/utl_stack.h +++ b/TAO/TAO_IDL/include/utl_stack.h @@ -79,35 +79,35 @@ class UTL_ScopeStackActiveIterator; class TAO_IDL_FE_Export UTL_ScopeStack { public: - UTL_ScopeStack (void); - ~UTL_ScopeStack (void); + UTL_ScopeStack (); + ~UTL_ScopeStack (); /// The initial capacity and how much to increment the capacity when needed. static const size_t increments; // Return top element. - UTL_Scope *top (void); + UTL_Scope *top (); // Pop top element. - void pop (void); + void pop (); // Clear entire stack. - void clear (void); + void clear (); // Push an element on the stack and return stack. UTL_ScopeStack *push (UTL_Scope *el); // How deep is the stack now? - unsigned long depth (void); + unsigned long depth (); // Return bottom element. - UTL_Scope *bottom (void); + UTL_Scope *bottom (); // Return (top - 1) element. - UTL_Scope *next_to_top (void); + UTL_Scope *next_to_top (); // return topmost non-NULL element. - UTL_Scope *top_non_null (void); + UTL_Scope *top_non_null (); /** * Call lookup_by_name on all the scopes from the top down. @@ -136,13 +136,13 @@ public: UTL_ScopeStackActiveIterator (UTL_ScopeStack &s); // Advance to next element. - void next (void); + void next (); // Get current item. - UTL_Scope* item (void); + UTL_Scope* item (); // Is the iteration finished? - bool is_done (void) const; + bool is_done () const; private: // On what to iterate? diff --git a/TAO/TAO_IDL/include/utl_string.h b/TAO/TAO_IDL/include/utl_string.h index 9489421c04f..7b6d788df13 100644 --- a/TAO/TAO_IDL/include/utl_string.h +++ b/TAO/TAO_IDL/include/utl_string.h @@ -79,24 +79,24 @@ class TAO_IDL_FE_Export UTL_String // =DESCRIPTION // string class to store identifiers public: - UTL_String (void); + UTL_String (); UTL_String (const char *str, bool take_copy= false); UTL_String (UTL_String *s, bool force_copy= false); - virtual ~UTL_String (void); + virtual ~UTL_String (); - virtual void destroy (void); + virtual void destroy (); // Cleanup function. virtual void dump (ACE_OSTREAM_TYPE &o); // Dump to the ostream. - char *get_string (void) {return this->p_str;} + char *get_string () {return this->p_str;} // Get contents of utl_string. - char *get_canonical_rep (void); + char *get_canonical_rep (); // Get canonical representation. This is (implemented as) the all upper // case corresponding string. diff --git a/TAO/TAO_IDL/include/utl_strlist.h b/TAO/TAO_IDL/include/utl_strlist.h index f355ba746b8..2a6c8f60c5f 100644 --- a/TAO/TAO_IDL/include/utl_strlist.h +++ b/TAO/TAO_IDL/include/utl_strlist.h @@ -84,25 +84,25 @@ public: UTL_StrList (UTL_String *s, UTL_StrList *cdr); - virtual ~UTL_StrList (void); + virtual ~UTL_StrList (); // AST Dumping virtual void dump (ACE_OSTREAM_TYPE &o); // Copy a list of strings - virtual UTL_List *copy (void); + virtual UTL_List *copy (); // Cleanup method. - virtual void destroy (void); + virtual void destroy (); // Get list element - UTL_String *head (void); + UTL_String *head (); // Set the list element void set_head (UTL_String *); // Get last element in this list - UTL_String *last_component (void); + UTL_String *last_component (); private: // The list item @@ -117,7 +117,7 @@ public: UTL_StrlistActiveIterator(UTL_StrList *s); // Get current item. - UTL_String *item (void); + UTL_String *item (); }; #endif // _UTL_STRLIST_UTL_STRLIST_HH |