summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Param_Test/helper.h')
-rw-r--r--TAO/tests/Param_Test/helper.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tests/Param_Test/helper.h b/TAO/tests/Param_Test/helper.h
index 57648202ecf..37523be1c30 100644
--- a/TAO/tests/Param_Test/helper.h
+++ b/TAO/tests/Param_Test/helper.h
@@ -22,19 +22,19 @@ class Generator
{
public:
/// constructor
- Generator (void);
+ Generator ();
/// destructor
- ~Generator (void);
+ ~Generator ();
- CORBA::Short gen_short (void);
- CORBA::Long gen_long (void);
- char* gen_string (void);
+ CORBA::Short gen_short ();
+ CORBA::Long gen_long ();
+ char* gen_string ();
char* gen_string (int maxlength);
- CORBA::WChar* gen_wstring (void);
+ CORBA::WChar* gen_wstring ();
CORBA::WChar* gen_wstring (int maxlength);
- const Param_Test::Fixed_Struct gen_fixed_struct (void);
- const Param_Test::Step gen_step (void);
+ const Param_Test::Fixed_Struct gen_fixed_struct ();
+ const Param_Test::Step gen_step ();
private:
Param_Test::Fixed_Struct fixed_struct_;
Param_Test::Step step_;