summaryrefslogtreecommitdiff
path: root/trunk/TAO/tao/FILE_Parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tao/FILE_Parser.h')
-rw-r--r--trunk/TAO/tao/FILE_Parser.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/trunk/TAO/tao/FILE_Parser.h b/trunk/TAO/tao/FILE_Parser.h
new file mode 100644
index 00000000000..2242d33a219
--- /dev/null
+++ b/trunk/TAO/tao/FILE_Parser.h
@@ -0,0 +1,60 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file FILE_Parser.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan (coryan@cs.wustl.edu)
+ */
+//=============================================================================
+
+
+#ifndef TAO_FILE_PARSER_H
+#define TAO_FILE_PARSER_H
+
+#include /**/ "ace/pre.h"
+#include "ace/Service_Config.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/IOR_Parser.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+/**
+ * @class TAO_FILE_Parser
+ *
+ * @brief Implements the <file:> IOR format
+ *
+ * This class implements the <file:> IOR format.
+ * It is dynamically loaded by the ORB and used to open a file,
+ * read its contents and then interprete the file as an IOR (that
+ * can be in any valid format).
+ */
+class TAO_FILE_Parser : public TAO_IOR_Parser
+{
+public:
+
+ /// The destructor
+ virtual ~TAO_FILE_Parser (void);
+
+ // = The IOR_Parser methods, please read the documentation in
+ // IOR_Parser.h
+ virtual bool match_prefix (const char *ior_string) const;
+ virtual CORBA::Object_ptr parse_string (const char *ior,
+ CORBA::ORB_ptr orb
+ ACE_ENV_ARG_DECL_NOT_USED)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+ACE_STATIC_SVC_DECLARE_EXPORT (TAO, TAO_FILE_Parser)
+ACE_FACTORY_DECLARE (TAO, TAO_FILE_Parser)
+
+#include /**/ "ace/post.h"
+#endif /* TAO_FILE_PARSER_H */