summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/POAManagerFactory.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/tao/PortableServer/POAManagerFactory.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/PortableServer/POAManagerFactory.h')
-rw-r--r--TAO/tao/PortableServer/POAManagerFactory.h87
1 files changed, 0 insertions, 87 deletions
diff --git a/TAO/tao/PortableServer/POAManagerFactory.h b/TAO/tao/PortableServer/POAManagerFactory.h
deleted file mode 100644
index ab2b6da2b19..00000000000
--- a/TAO/tao/PortableServer/POAManagerFactory.h
+++ /dev/null
@@ -1,87 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file POAManagerFactory.h
- *
- * $Id$
- *
- * POAManagerFactory
- *
- * @author Johnny Willemsen <jwillemsen@remedy.nl>
- */
-//=============================================================================
-
-#ifndef TAO_POAMANAGERFACTORY_H
-#define TAO_POAMANAGERFACTORY_H
-#include /**/ "ace/pre.h"
-
-#include "tao/PortableServer/portableserver_export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/PortableServer/POAManagerFactoryC.h"
-#include "tao/PortableServer/Object_Adapter.h"
-#include "tao/LocalObject.h"
-#include "ace/Unbounded_Set.h"
-
-// This is to remove "inherits via dominance" warnings from MSVC.
-// MSVC is being a little too paranoid.
-#if defined(_MSC_VER)
-#pragma warning(push)
-#pragma warning(disable:4250)
-#endif /* _MSC_VER */
-
-#if !defined (CORBA_E_COMPACT) && !defined (CORBA_E_MICRO)
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_PortableServer_Export TAO_POAManager_Factory :
- public ::PortableServer::POAManagerFactory,
- public TAO_Local_RefCounted_Object
-{
-public:
- TAO_POAManager_Factory (TAO_Object_Adapter &object_adapter);
-
- virtual ~TAO_POAManager_Factory (void);
-
- virtual ::PortableServer::POAManager_ptr create_POAManager (
- const char * id,
- const ::CORBA::PolicyList & policies
- ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException,
- ::PortableServer::POAManagerFactory::ManagerAlreadyExists,
- ::CORBA::PolicyError));
-
- virtual ::PortableServer::POAManagerFactory::POAManagerSeq * list (
- ACE_ENV_SINGLE_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- virtual ::PortableServer::POAManager_ptr find (
- const char * id ACE_ENV_ARG_DECL)
- ACE_THROW_SPEC ((CORBA::SystemException));
-
- int remove_poamanager (::PortableServer::POAManager_ptr poamanager);
-
- int register_poamanager (::PortableServer::POAManager_ptr poamanager);
-
-private:
- TAO_Object_Adapter &object_adapter_;
-
- typedef ACE_Unbounded_Set < ::PortableServer::POAManager_ptr> POAMANAGERSET;
-
- POAMANAGERSET poamanager_set_;
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#endif
-
-#if defined(_MSC_VER)
-#pragma warning(pop)
-#endif /* _MSC_VER */
-
-#include /**/ "ace/post.h"
-#endif /* TAO_POAMANAGERFACTORY_H */