aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/xdr/istream.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 /libxsde/xsde/cxx/hybrid/xdr/istream.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 'libxsde/xsde/cxx/hybrid/xdr/istream.hxx')
-rw-r--r--libxsde/xsde/cxx/hybrid/xdr/istream.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/libxsde/xsde/cxx/hybrid/xdr/istream.hxx b/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
index 559b136..c5c2f8b 100644
--- a/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
+++ b/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
@@ -154,22 +154,22 @@ namespace xsde
#ifdef XSDE_EXCEPTIONS
template <typename T>
- void operator>> (ixdrstream&, pod_seq<T>&);
+ void operator>> (ixdrstream&, pod_sequence<T>&);
template <typename T>
- void operator>> (ixdrstream&, fix_seq<T>&);
+ void operator>> (ixdrstream&, fix_sequence<T>&);
template <typename T>
- void operator>> (ixdrstream&, var_seq<T>&);
+ void operator>> (ixdrstream&, var_sequence<T>&);
#else
template <typename T>
- bool operator>> (ixdrstream&, pod_seq<T>&);
+ bool operator>> (ixdrstream&, pod_sequence<T>&);
template <typename T>
- bool operator>> (ixdrstream&, fix_seq<T>&);
+ bool operator>> (ixdrstream&, fix_sequence<T>&);
template <typename T>
- bool operator>> (ixdrstream&, var_seq<T>&);
+ bool operator>> (ixdrstream&, var_sequence<T>&);
#endif
}
}