From 3bf42ed8ccc93a3ff5fdabb9153b887018075acc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 19 Jan 2010 11:44:48 +0200 Subject: Add support for selective polymorphic in C++/Tree New options: --polymorphic-type, --polymorphic-type-all. --- .../cxx/tree/custom/taxonomy/people-custom.cxx | 23 ---------------------- 1 file changed, 23 deletions(-) (limited to 'examples/cxx/tree/custom/taxonomy/people-custom.cxx') diff --git a/examples/cxx/tree/custom/taxonomy/people-custom.cxx b/examples/cxx/tree/custom/taxonomy/people-custom.cxx index 14c7087..321d2df 100644 --- a/examples/cxx/tree/custom/taxonomy/people-custom.cxx +++ b/examples/cxx/tree/custom/taxonomy/people-custom.cxx @@ -21,13 +21,6 @@ namespace people template person_impl:: - person_impl (std::auto_ptr& name) - : base (name) - { - } - - template - person_impl:: person_impl (const xercesc::DOMElement& e, xml_schema::flags f, xml_schema::container* c) @@ -74,13 +67,6 @@ namespace people template superman_impl:: - superman_impl (std::auto_ptr& name, bool can_fly) - : base (name, can_fly) - { - } - - template - superman_impl:: superman_impl (const xercesc::DOMElement& e, xml_schema::flags f, xml_schema::container* c) @@ -134,15 +120,6 @@ namespace people template batman_impl:: - batman_impl (std::auto_ptr& name, - bool can_fly, - unsigned int wing_span) - : base (name, can_fly, wing_span) - { - } - - template - batman_impl:: batman_impl (const xercesc::DOMElement& e, xml_schema::flags f, xml_schema::container* c) -- cgit v1.1