summaryrefslogtreecommitdiff
path: root/TAO/tests/Quoter/FactoryFinder.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Quoter/FactoryFinder.h')
-rw-r--r--TAO/tests/Quoter/FactoryFinder.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/TAO/tests/Quoter/FactoryFinder.h b/TAO/tests/Quoter/FactoryFinder.h
deleted file mode 100644
index 7c7e60b3401..00000000000
--- a/TAO/tests/Quoter/FactoryFinder.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = FILENAME
-// FactoryFinder.h
-//
-// = DESCRIPTION
-// Server for the Quoter Factory Finder
-//
-// = AUTHOR
-// Michael Kircher (mk1@cs.wustl.edu)
-//
-// ============================================================================
-
-#include "ace/Get_Opt.h"
-#include "tao/tao.h"
-#include "FactoryFinderImpl.h"
-
-#if !defined (QUOTER_FACTORY_FINDER_H)
-#define QUOTER_FACTORY_FINDER_H
-
-class QuoterFactoryFinder_Server
-{
- // = TILE
- // Server object for the Quoter Factory Finder
-
-public:
- QuoterFactoryFinder_Server (void);
- // Default constructor
-
- ~QuoterFactoryFinder_Server (void);
- // Destructor
-
- int init (int argc, char *argv[], CORBA::Environment& env);
- // Initialize the Quoter_Server state - parsing arguments and ...
-
- int run (CORBA::Environment& env);
- // Run the orb
-
- unsigned int parse_args ();
- // parse the passed parameters
-
-private:
- TAO_ORB_Manager orb_manager_;
- // instance of the ORB Manager
-
- QuoterFactoryFinderImpl *quoterFactoryFinderImpl_ptr_;
- // instance of the Quoter Factory Finder
-
- CosNaming::NamingContext_var quoterNamingContext_var_;
- // reference to the Quoter naming context
-
- int argc_;
- // Number of commandline arguments.
-
- char **argv_;
- // commandline arguments.
-};
-
-#endif /* QUOTER_FACTORY_FINDER_H */