summaryrefslogtreecommitdiff
path: root/TAO/tests/DynAny_Test/driver.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-22 02:46:16 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-22 02:46:16 +0000
commit7ad2f2d9de1804cb46748b64925ec8cea997eceb (patch)
tree2c396e5724b79b5ebf31e997e3db8261837d6006 /TAO/tests/DynAny_Test/driver.h
parente26ededdc22631b92ffeb64c60cabf142be89bc0 (diff)
downloadATCD-ACE-4_6_30.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE-4_6_30'.ACE-4_6_30
Diffstat (limited to 'TAO/tests/DynAny_Test/driver.h')
-rw-r--r--TAO/tests/DynAny_Test/driver.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/TAO/tests/DynAny_Test/driver.h b/TAO/tests/DynAny_Test/driver.h
deleted file mode 100644
index 9249218f53b..00000000000
--- a/TAO/tests/DynAny_Test/driver.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// -*- c++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/DynAny_Test
-//
-// = FILENAME
-// driver.h
-//
-// = DESCRIPTION
-// Header file for the driver program.
-//
-// = AUTHOR
-// Jeff Parsons <jp4@cs.wustl.edu>
-//
-// ============================================================================
-
-#if !defined (DRIVER_H)
-#define DRIVER_H
-
-#include "tao/corba.h"
-
-class Driver
-{
-public:
- // = Constructor and destructor.
- Driver (void);
- ~Driver (void);
-
-enum TEST_TYPE
- {
- NO_TEST,
- TEST_DYNANY,
- TEST_DYNARRAY,
- TEST_DYNENUM,
- TEST_DYNSEQUENCE,
- TEST_DYNSTRUCT,
- TEST_DYNUNION
- };
-
- int init (int argc, char* argv[]);
- // Initialize the driver object.
-
- int parse_args (int argc, char* argv[]);
- // Parse command line arguments.
-
- int run (void);
- // Execute test code.
-
-private:
- CORBA::ORB_var orb_;
- // underlying ORB (we do not own it)
-
- TEST_TYPE test_type_;
-};
-
-#endif /* DRIVER_H */