summaryrefslogtreecommitdiff
path: root/TAO/tao/BiDir_Adapter.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/BiDir_Adapter.h')
-rw-r--r--TAO/tao/BiDir_Adapter.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/TAO/tao/BiDir_Adapter.h b/TAO/tao/BiDir_Adapter.h
new file mode 100644
index 00000000000..61e428234ea
--- /dev/null
+++ b/TAO/tao/BiDir_Adapter.h
@@ -0,0 +1,52 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file BiDir_Adapter.h
+ *
+ * $Id$
+ *
+ * @author Balachandran Natarajan <parsons@cs.wustl.edu>
+ */
+//=============================================================================
+#ifndef TAO_BIDIR_ADAPTER_H
+#define TAO_BIDIR_ADAPTER_H
+
+#include /**/ "ace/pre.h"
+#include "ace/Service_Object.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/TAO_Export.h"
+#include "tao/orbconf.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+class TAO_Policy_Validator;
+
+/**
+ * @class TAO_BiDir_Adapter
+ *
+ * @brief TAO_BiDir_Adapter.
+ *
+ * Class that offers an interface to the ORB to load and manipulate
+ * BiDirGIOP library.
+ */
+class TAO_Export TAO_BiDir_Adapter : public ACE_Service_Object
+{
+public:
+
+ /// The virtual destructor
+ virtual ~TAO_BiDir_Adapter (void);
+
+ virtual void load_policy_validators (TAO_Policy_Validator &validator)
+ = 0;
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_BIDIR_ADAPTER_H */