summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/helper.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-22 08:12:17 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-22 08:12:17 +0000
commit67f2dc887d1d856ee7f190429a65bb9b564ebaef (patch)
tree8ee92803b2250d2ccb759dec0c3de7a49b6c6178 /TAO/tests/Param_Test/helper.h
parent73b09290e29188937507b0fa68e29bbe2100d626 (diff)
downloadATCD-ACE-4_5_41.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_5_41'.ACE-4_5_41
Diffstat (limited to 'TAO/tests/Param_Test/helper.h')
-rw-r--r--TAO/tests/Param_Test/helper.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/TAO/tests/Param_Test/helper.h b/TAO/tests/Param_Test/helper.h
deleted file mode 100644
index 9882706cef4..00000000000
--- a/TAO/tests/Param_Test/helper.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Param_Test
-//
-// = FILENAME
-// helper.h
-//
-// = DESCRIPTION
-// Defines a helper class that can generate values for the parameters used
-// for the Param_Test example
-//
-// = AUTHORS
-// Aniruddha Gokhale
-//
-// ============================================================================
-
-#if !defined (HELPER_H)
-#define HELPER_H
-
-#include "param_testCli.h"
-
-class Generator
-{
-public:
- Generator (void);
- // constructor
-
- ~Generator (void);
- // destructor
-
- CORBA::Short gen_short (void);
- CORBA::Long gen_long (void);
-#if 0
- CORBA::Char gen_char (void);
- CORBA::Octet gen_octet (void);
- CORBA::Float gen_float (void);
- CORBA::Double gen_double (void);
-#endif
- CORBA::String gen_string (void);
- CORBA::String gen_string (int maxlength);
- const Param_Test::Fixed_Struct gen_fixed_struct (void);
-private:
- Param_Test::Fixed_Struct fixed_struct_;
-};
-
-typedef ACE_Singleton<Generator, ACE_SYNCH_RECURSIVE_MUTEX> GENERATOR;
-#endif /* HELPER_H */