summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/orbsvcs/Security/Security_PolicyFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/orbsvcs/Security/Security_PolicyFactory.h')
-rw-r--r--ACE/TAO/orbsvcs/orbsvcs/Security/Security_PolicyFactory.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/orbsvcs/Security/Security_PolicyFactory.h b/ACE/TAO/orbsvcs/orbsvcs/Security/Security_PolicyFactory.h
new file mode 100644
index 00000000000..f81f25a26c0
--- /dev/null
+++ b/ACE/TAO/orbsvcs/orbsvcs/Security/Security_PolicyFactory.h
@@ -0,0 +1,70 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Security_PolicyFactory.h
+ *
+ * $Id$
+ *
+ * @author Ossama Othman <ossama@uci.edu>
+ */
+//=============================================================================
+
+
+#ifndef TAO_SECURITY_POLICY_FACTORY_H
+#define TAO_SECURITY_POLICY_FACTORY_H
+
+#include /**/ "ace/pre.h"
+
+#include "orbsvcs/Security/security_export.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/PI/PI.h"
+#include "tao/LocalObject.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 */
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ namespace Security
+ {
+
+ /**
+ * @class PolicyFactory
+ *
+ * @brief Policy factory for all security related policies.
+ *
+ * Policy factory for all security related policies.
+ */
+ class PolicyFactory
+ : public PortableInterceptor::PolicyFactory,
+ public ::CORBA::LocalObject
+ {
+ public:
+
+ virtual CORBA::Policy_ptr create_policy (CORBA::PolicyType type,
+ const CORBA::Any & value);
+ };
+
+ } // End Security namespace
+} // End TAO namespace
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#if defined(_MSC_VER)
+#pragma warning(pop)
+#endif /* _MSC_VER */
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_SECURITY_POLICY_FACTORY_H */