aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/binary/custom/orawstream.txx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cxx/hybrid/binary/custom/orawstream.txx')
-rw-r--r--examples/cxx/hybrid/binary/custom/orawstream.txx10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/cxx/hybrid/binary/custom/orawstream.txx b/examples/cxx/hybrid/binary/custom/orawstream.txx
index 46c5b71..cc95de9 100644
--- a/examples/cxx/hybrid/binary/custom/orawstream.txx
+++ b/examples/cxx/hybrid/binary/custom/orawstream.txx
@@ -6,7 +6,7 @@
template <typename T>
void
-operator<< (orawstream& s, const xml_schema::pod_seq<T>& x)
+operator<< (orawstream& s, const xml_schema::pod_sequence<T>& x)
{
size_t n = x.size ();
@@ -22,11 +22,11 @@ operator<< (orawstream& s, const xml_schema::pod_seq<T>& x)
template <typename T>
void
-operator<< (orawstream& s, const xml_schema::fix_seq<T>& x)
+operator<< (orawstream& s, const xml_schema::fix_sequence<T>& x)
{
s << orawstream::as_size (x.size ());
- for (typename xml_schema::fix_seq<T>::const_iterator i = x.begin ();
+ for (typename xml_schema::fix_sequence<T>::const_iterator i = x.begin ();
i != x.end (); ++i)
{
s << *i;
@@ -35,11 +35,11 @@ operator<< (orawstream& s, const xml_schema::fix_seq<T>& x)
template <typename T>
void
-operator<< (orawstream& s, const xml_schema::var_seq<T>& x)
+operator<< (orawstream& s, const xml_schema::var_sequence<T>& x)
{
s << orawstream::as_size (x.size ());
- for (typename xml_schema::var_seq<T>::const_iterator i = x.begin ();
+ for (typename xml_schema::var_sequence<T>::const_iterator i = x.begin ();
i != x.end (); ++i)
{
s << *i;