summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/custom/taxonomy/people-custom.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-01-19 11:44:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-01-19 11:44:48 +0200
commit3bf42ed8ccc93a3ff5fdabb9153b887018075acc (patch)
tree19608b70275324a6e49f7f013ddff912b26128d4 /examples/cxx/tree/custom/taxonomy/people-custom.cxx
parent4257e28e3bbb92042f5a1db05eba17d7b2a3b151 (diff)
Add support for selective polymorphic in C++/Tree
New options: --polymorphic-type, --polymorphic-type-all.
Diffstat (limited to 'examples/cxx/tree/custom/taxonomy/people-custom.cxx')
-rw-r--r--examples/cxx/tree/custom/taxonomy/people-custom.cxx23
1 files changed, 0 insertions, 23 deletions
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 <typename base>
person_impl<base>::
- person_impl (std::auto_ptr<xml_schema::string>& name)
- : base (name)
- {
- }
-
- template <typename base>
- person_impl<base>::
person_impl (const xercesc::DOMElement& e,
xml_schema::flags f,
xml_schema::container* c)
@@ -74,13 +67,6 @@ namespace people
template <typename base>
superman_impl<base>::
- superman_impl (std::auto_ptr<xml_schema::string>& name, bool can_fly)
- : base (name, can_fly)
- {
- }
-
- template <typename base>
- superman_impl<base>::
superman_impl (const xercesc::DOMElement& e,
xml_schema::flags f,
xml_schema::container* c)
@@ -134,15 +120,6 @@ namespace people
template <typename base>
batman_impl<base>::
- batman_impl (std::auto_ptr<xml_schema::string>& name,
- bool can_fly,
- unsigned int wing_span)
- : base (name, can_fly, wing_span)
- {
- }
-
- template <typename base>
- batman_impl<base>::
batman_impl (const xercesc::DOMElement& e,
xml_schema::flags f,
xml_schema::container* c)