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