aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/binary/custom/irawstream.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-03-16 11:11:54 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-03-16 11:11:54 +0200
commit0d62005a3ff3b62d02c2eb3fd8644e0e19b202e8 (patch)
tree6cda0acea2d58cff3649af8a43e92fe024e4861d /examples/cxx/hybrid/binary/custom/irawstream.hxx
parentf793c66692ef717ffec874b5002a9d95aef3485e (diff)
Change sequence names to be consistent with documentation
The *_seq names were changed to *_sequence. Also, the generated code now uses sequence names from the xml_schema namespace instead of the implementation namespaces (xsde::cxx::hybrid).
Diffstat (limited to 'examples/cxx/hybrid/binary/custom/irawstream.hxx')
-rw-r--r--examples/cxx/hybrid/binary/custom/irawstream.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/cxx/hybrid/binary/custom/irawstream.hxx b/examples/cxx/hybrid/binary/custom/irawstream.hxx
index 94d2382..e4292a7 100644
--- a/examples/cxx/hybrid/binary/custom/irawstream.hxx
+++ b/examples/cxx/hybrid/binary/custom/irawstream.hxx
@@ -75,16 +75,16 @@ void operator>> (irawstream&, xml_schema::gyear&);
void operator>> (irawstream&, xml_schema::gyear_month&);
void operator>> (irawstream&, xml_schema::time&);
-void operator>> (irawstream&, xml_schema::str_seq&);
+void operator>> (irawstream&, xml_schema::string_sequence&);
template <typename T>
-void operator>> (irawstream&, xml_schema::pod_seq<T>&);
+void operator>> (irawstream&, xml_schema::pod_sequence<T>&);
template <typename T>
-void operator>> (irawstream&, xml_schema::fix_seq<T>&);
+void operator>> (irawstream&, xml_schema::fix_sequence<T>&);
template <typename T>
-void operator>> (irawstream&, xml_schema::var_seq<T>&);
+void operator>> (irawstream&, xml_schema::var_sequence<T>&);
#include "irawstream.ixx"
#include "irawstream.txx"