summaryrefslogtreecommitdiff
path: root/TAO/tao/Parser_Registry.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Parser_Registry.inl')
-rw-r--r--TAO/tao/Parser_Registry.inl19
1 files changed, 19 insertions, 0 deletions
diff --git a/TAO/tao/Parser_Registry.inl b/TAO/tao/Parser_Registry.inl
new file mode 100644
index 00000000000..5545cece0df
--- /dev/null
+++ b/TAO/tao/Parser_Registry.inl
@@ -0,0 +1,19 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE TAO_Parser_Registry::Parser_Iterator
+TAO_Parser_Registry::begin (void) const
+{
+ return this->parsers_;
+}
+
+ACE_INLINE TAO_Parser_Registry::Parser_Iterator
+TAO_Parser_Registry::end (void) const
+{
+ return this->parsers_ + this->size_;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL