summaryrefslogtreecommitdiff
path: root/TAO/tao/Parser_Registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Parser_Registry.h')
-rw-r--r--TAO/tao/Parser_Registry.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/TAO/tao/Parser_Registry.h b/TAO/tao/Parser_Registry.h
index cf78deaabbd..825f3f2c0cb 100644
--- a/TAO/tao/Parser_Registry.h
+++ b/TAO/tao/Parser_Registry.h
@@ -61,16 +61,19 @@ public:
Parser_Iterator end (void) const;
private:
+
// The parser registry should not be copied.
- ACE_UNIMPLEMENTED_FUNC (TAO_Parser_Registry (const TAO_Parser_Registry&))
- ACE_UNIMPLEMENTED_FUNC (void operator= (const TAO_Parser_Registry&))
+ TAO_Parser_Registry (const TAO_Parser_Registry&);
+ void operator= (const TAO_Parser_Registry&);
private:
+
/// List of parsers
TAO_IOR_Parser **parsers_;
/// Number of parsers
size_t size_;
+
};
#if defined(__ACE_INLINE__)