summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/helper.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-29 21:10:42 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-12-29 21:10:42 +0000
commit14e33369646f450af13418003d29d0721144321d (patch)
treeab3071b702e71455b797d71b7cea16c3a1edd514 /TAO/tests/Param_Test/helper.h
parent2956e635769e45475a3c67325bbfdb5fdf273b6f (diff)
downloadATCD-14e33369646f450af13418003d29d0721144321d.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_6_10'.ACE-4_6_10
Diffstat (limited to 'TAO/tests/Param_Test/helper.h')
-rw-r--r--TAO/tests/Param_Test/helper.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/TAO/tests/Param_Test/helper.h b/TAO/tests/Param_Test/helper.h
deleted file mode 100644
index fb128fbfb2d..00000000000
--- a/TAO/tests/Param_Test/helper.h
+++ /dev/null
@@ -1,52 +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
-//
-// ============================================================================
-
-#ifndef 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);
- const Param_Test::Step gen_step (void);
- private:
- Param_Test::Fixed_Struct fixed_struct_;
- Param_Test::Step step_;
-};
-
-typedef ACE_Singleton<Generator, ACE_SYNCH_RECURSIVE_MUTEX> GENERATOR;
-#endif /* HELPER_H */