summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/PortableServer_PolicyFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/PortableServer_PolicyFactory.h')
-rw-r--r--TAO/tao/PortableServer/PortableServer_PolicyFactory.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/PortableServer_PolicyFactory.h b/TAO/tao/PortableServer/PortableServer_PolicyFactory.h
new file mode 100644
index 00000000000..e41f9b088fa
--- /dev/null
+++ b/TAO/tao/PortableServer/PortableServer_PolicyFactory.h
@@ -0,0 +1,43 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file PortableServer_PolicyFactory.h
+ *
+ * $Id$
+ *
+ * @author Irfan Pyarali <irfan@oomworks.com>
+ */
+//=============================================================================
+
+#ifndef TAO_PORTABLESERVER_POLICY_FACTORY_H
+#define TAO_PORTABLESERVER_POLICY_FACTORY_H
+
+#include "ace/pre.h"
+#include "tao/corbafwd.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "portableserver_export.h"
+#include "tao/PortableInterceptorC.h"
+#include "tao/LocalObject.h"
+
+/// Policy factory for all PortableServer related policies.
+class TAO_PortableServer_Export TAO_PortableServer_PolicyFactory
+ : public virtual PortableInterceptor::PolicyFactory,
+ public virtual TAO_Local_RefCounted_Object
+{
+public:
+
+ CORBA::Policy_ptr create_policy (CORBA::PolicyType type,
+ const CORBA::Any & value
+ ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ ACE_THROW_SPEC ((CORBA::SystemException,
+ CORBA::PolicyError));
+};
+
+#include "ace/post.h"
+
+#endif /* TAO_PORTABLESERVER_POLICY_FACTORY_H */