summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Deployment/Interceptors/Name_Utilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Deployment/Interceptors/Name_Utilities.h')
-rw-r--r--CIAO/ciao/Deployment/Interceptors/Name_Utilities.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/CIAO/ciao/Deployment/Interceptors/Name_Utilities.h b/CIAO/ciao/Deployment/Interceptors/Name_Utilities.h
deleted file mode 100644
index e1db60406b3..00000000000
--- a/CIAO/ciao/Deployment/Interceptors/Name_Utilities.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * @file Name_Utilities.h
- * @author William R. Otte <wotte@dre.vanderbilt.edu>
- *
- * A set of utility methods to manages references.
- */
-
-#ifndef NAME_UTILITIES_H
-#define NAME_UTILITIES_H
-
-#include "orbsvcs/CosNamingC.h"
-
-namespace CIAO
-{
- namespace Name_Utilities
- {
- /// Write IOR to named file. Will overwrite file if present.
- bool write_ior (const ACE_TCHAR *file, const char *ior);
-
- /// Binds object to provided name, which may be formatted with / to indicate
- /// naming contexts, e.g. A/B/C.
- bool bind_object (const char *name,
- CORBA::Object_ptr obj,
- CosNaming::NamingContext_ptr);
-
- /// Will unbind the provided name.
- bool unbind_object (const char *name,
- CosNaming::NamingContext_ptr);
-
- void bind_context (CosNaming::Name &nm,
- CosNaming::NamingContext_ptr);
-
- void build_name (const char *nm,
- CosNaming::Name &);
-
- }
-}
-
-#endif /* NAME_UTILITIES_H */