summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-13 07:46:17 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-04-13 07:46:17 +0000
commit8d6bafa1ee8e1ec66fc79dfeb56d80e629260c41 (patch)
treecf152457d4e23537b46e181d4eb9d92ffdf2dca3
parent5755466cb2b0f997210da7460ebf8a45989b614d (diff)
downloadATCD-8d6bafa1ee8e1ec66fc79dfeb56d80e629260c41.tar.gz
I don't think this needs to be here.
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/Repository.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/Repository.h b/TAO/orbsvcs/tests/ImplRepo/Repository.h
deleted file mode 100644
index aa8467e2d2c..00000000000
--- a/TAO/orbsvcs/tests/ImplRepo/Repository.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// $Id$
-#if !defined (REPOSITORY_H)
-#define REPOSITORY_H
-
-#include "ace/Naming_Context.h"
-
-class Repository
-{
-public:
- Repository ();
- // Default Constructor
-
- int add (const char *key, const char *comm_line, const char *env, const char *wdir);
- // Add a new server to the Repository
-
- int remove (const char *key);
- // Removes the server from the Repository
-
- int resolve (const char *key, char *&comm_line, char *&env, char *&wdir);
- // Find the key record in the Repository
-
- // = Accessor methods
- int get_comm_line (const char *key, char *&comm_line);
- int get_env (const char *key, char *&env);
- int get_wdir (const char *key, char *&wdir);
-
- // Dump method
- void dump (void);
-
-private:
- ACE_Naming_Context repository_;
-};
-
-
-#endif /* REPOSITORY_H */