summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service/Activator_Info.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/orbsvcs/ImplRepo_Service/Activator_Info.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/orbsvcs/ImplRepo_Service/Activator_Info.h')
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/Activator_Info.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/Activator_Info.h b/TAO/orbsvcs/ImplRepo_Service/Activator_Info.h
deleted file mode 100644
index a054fa24cd9..00000000000
--- a/TAO/orbsvcs/ImplRepo_Service/Activator_Info.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// $Id$
-#ifndef ACTIVATOR_INFO_H
-#define ACTIVATOR_INFO_H
-
-#include "ace/Bound_Ptr.h"
-#include "ace/SString.h"
-
-#include "ImR_ActivatorC.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-/**
-* @brief Information about IMR registered Activators.
-*/
-struct Activator_Info
-{
- Activator_Info (const ACE_CString& aname,
- CORBA::Long atoken,
- const ACE_CString& aior,
- ImplementationRepository::Activator_ptr act =
- ImplementationRepository::Activator::_nil ());
-
- /// Reset the connection portion
- void reset();
-
- ACE_CString name;
- CORBA::Long token;
- ACE_CString ior;
- ImplementationRepository::Activator_var activator;
-};
-
-typedef ACE_Strong_Bound_Ptr<Activator_Info, ACE_Null_Mutex> Activator_Info_Ptr;
-
-#endif /* ACTIVATOR_INFO_H */