aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-10-13 15:38:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-10-13 15:38:11 +0200
commit6f395f9f769866a04f6949cb7ed14f93d90cf728 (patch)
treed1f8343e7b41fc1895676ad4248a5e4942f9172b /libxsde/xsde/cxx/hybrid
parentc1f49aa87678c512ac37575365a6676727e5f20a (diff)
Map anySimpleType to a string
Diffstat (limited to 'libxsde/xsde/cxx/hybrid')
-rw-r--r--libxsde/xsde/cxx/hybrid/any-type.hxx16
-rw-r--r--libxsde/xsde/cxx/hybrid/cdr/istream.hxx2
-rw-r--r--libxsde/xsde/cxx/hybrid/cdr/istream.ixx11
-rw-r--r--libxsde/xsde/cxx/hybrid/cdr/ostream.hxx2
-rw-r--r--libxsde/xsde/cxx/hybrid/cdr/ostream.ixx11
-rw-r--r--libxsde/xsde/cxx/hybrid/xdr/istream.hxx2
-rw-r--r--libxsde/xsde/cxx/hybrid/xdr/istream.ixx11
-rw-r--r--libxsde/xsde/cxx/hybrid/xdr/ostream.hxx2
-rw-r--r--libxsde/xsde/cxx/hybrid/xdr/ostream.ixx11
9 files changed, 0 insertions, 68 deletions
diff --git a/libxsde/xsde/cxx/hybrid/any-type.hxx b/libxsde/xsde/cxx/hybrid/any-type.hxx
index 0517292..a356564 100644
--- a/libxsde/xsde/cxx/hybrid/any-type.hxx
+++ b/libxsde/xsde/cxx/hybrid/any-type.hxx
@@ -43,22 +43,6 @@ namespace xsde
#endif
*/
};
-
- struct any_simple_type
- {
- };
-
- inline bool
- operator== (const any_simple_type&, const any_simple_type&)
- {
- return true;
- }
-
- inline bool
- operator!= (const any_simple_type&, const any_simple_type&)
- {
- return false;
- }
}
}
}
diff --git a/libxsde/xsde/cxx/hybrid/cdr/istream.hxx b/libxsde/xsde/cxx/hybrid/cdr/istream.hxx
index 9dc5cb6..740cfc4 100644
--- a/libxsde/xsde/cxx/hybrid/cdr/istream.hxx
+++ b/libxsde/xsde/cxx/hybrid/cdr/istream.hxx
@@ -123,7 +123,6 @@ namespace xsde
#ifdef XSDE_EXCEPTIONS
void operator>> (icdrstream&, any_type&);
- void operator>> (icdrstream&, any_simple_type&);
void operator>> (icdrstream&, qname&);
void operator>> (icdrstream&, string_sequence&);
void operator>> (icdrstream&, time_zone&);
@@ -138,7 +137,6 @@ namespace xsde
void operator>> (icdrstream&, time&);
#else
bool operator>> (icdrstream&, any_type&);
- bool operator>> (icdrstream&, any_simple_type&);
bool operator>> (icdrstream&, qname&);
bool operator>> (icdrstream&, string_sequence&);
bool operator>> (icdrstream&, time_zone&);
diff --git a/libxsde/xsde/cxx/hybrid/cdr/istream.ixx b/libxsde/xsde/cxx/hybrid/cdr/istream.ixx
index 53a9575..53e7cbf 100644
--- a/libxsde/xsde/cxx/hybrid/cdr/istream.ixx
+++ b/libxsde/xsde/cxx/hybrid/cdr/istream.ixx
@@ -187,11 +187,6 @@ namespace xsde
{
}
- inline void
- operator>> (icdrstream&, any_simple_type&)
- {
- }
-
#else // XSDE_EXCEPTIONS
inline bool icdrstream::
@@ -373,12 +368,6 @@ namespace xsde
return true;
}
- inline bool
- operator>> (icdrstream&, any_simple_type&)
- {
- return true;
- }
-
#endif // XSDE_EXCEPTIONS
}
}
diff --git a/libxsde/xsde/cxx/hybrid/cdr/ostream.hxx b/libxsde/xsde/cxx/hybrid/cdr/ostream.hxx
index 8485241..2c58907 100644
--- a/libxsde/xsde/cxx/hybrid/cdr/ostream.hxx
+++ b/libxsde/xsde/cxx/hybrid/cdr/ostream.hxx
@@ -123,7 +123,6 @@ namespace xsde
#ifdef XSDE_EXCEPTIONS
void operator<< (ocdrstream&, const any_type&);
- void operator<< (ocdrstream&, const any_simple_type&);
void operator<< (ocdrstream&, const qname&);
void operator<< (ocdrstream&, const string_sequence&);
void operator<< (ocdrstream&, const time_zone&);
@@ -138,7 +137,6 @@ namespace xsde
void operator<< (ocdrstream&, const time&);
#else
bool operator<< (ocdrstream&, const any_type&);
- bool operator<< (ocdrstream&, const any_simple_type&);
bool operator<< (ocdrstream&, const qname&);
bool operator<< (ocdrstream&, const string_sequence&);
bool operator<< (ocdrstream&, const time_zone&);
diff --git a/libxsde/xsde/cxx/hybrid/cdr/ostream.ixx b/libxsde/xsde/cxx/hybrid/cdr/ostream.ixx
index aa01ad1..d2b38b4 100644
--- a/libxsde/xsde/cxx/hybrid/cdr/ostream.ixx
+++ b/libxsde/xsde/cxx/hybrid/cdr/ostream.ixx
@@ -131,11 +131,6 @@ namespace xsde
{
}
- inline void
- operator<< (ocdrstream&, const any_simple_type&)
- {
- }
-
#else // XSDE_EXCEPTIONS
inline bool ocdrstream::
@@ -233,12 +228,6 @@ namespace xsde
return true;
}
- inline bool
- operator<< (ocdrstream&, const any_simple_type&)
- {
- return true;
- }
-
#endif // XSDE_EXCEPTIONS
}
}
diff --git a/libxsde/xsde/cxx/hybrid/xdr/istream.hxx b/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
index 188ee58..b7185c3 100644
--- a/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
+++ b/libxsde/xsde/cxx/hybrid/xdr/istream.hxx
@@ -124,7 +124,6 @@ namespace xsde
#ifdef XSDE_EXCEPTIONS
void operator>> (ixdrstream&, any_type&);
- void operator>> (ixdrstream&, any_simple_type&);
void operator>> (ixdrstream&, qname&);
void operator>> (ixdrstream&, string_sequence&);
void operator>> (ixdrstream&, time_zone&);
@@ -139,7 +138,6 @@ namespace xsde
void operator>> (ixdrstream&, time&);
#else
bool operator>> (ixdrstream&, any_type&);
- bool operator>> (ixdrstream&, any_simple_type&);
bool operator>> (ixdrstream&, qname&);
bool operator>> (ixdrstream&, string_sequence&);
bool operator>> (ixdrstream&, time_zone&);
diff --git a/libxsde/xsde/cxx/hybrid/xdr/istream.ixx b/libxsde/xsde/cxx/hybrid/xdr/istream.ixx
index f11fd5c..4c9c585 100644
--- a/libxsde/xsde/cxx/hybrid/xdr/istream.ixx
+++ b/libxsde/xsde/cxx/hybrid/xdr/istream.ixx
@@ -163,11 +163,6 @@ namespace xsde
{
}
- inline void
- operator>> (ixdrstream&, any_simple_type&)
- {
- }
-
#else // XSDE_EXCEPTIONS
inline bool ixdrstream::
@@ -301,12 +296,6 @@ namespace xsde
return true;
}
- inline bool
- operator>> (ixdrstream&, any_simple_type&)
- {
- return true;
- }
-
#endif // XSDE_EXCEPTIONS
}
}
diff --git a/libxsde/xsde/cxx/hybrid/xdr/ostream.hxx b/libxsde/xsde/cxx/hybrid/xdr/ostream.hxx
index bf6a3fe..1af22dd 100644
--- a/libxsde/xsde/cxx/hybrid/xdr/ostream.hxx
+++ b/libxsde/xsde/cxx/hybrid/xdr/ostream.hxx
@@ -124,7 +124,6 @@ namespace xsde
#ifdef XSDE_EXCEPTIONS
void operator<< (oxdrstream&, const any_type&);
- void operator<< (oxdrstream&, const any_simple_type&);
void operator<< (oxdrstream&, const qname&);
void operator<< (oxdrstream&, const string_sequence&);
void operator<< (oxdrstream&, const time_zone&);
@@ -139,7 +138,6 @@ namespace xsde
void operator<< (oxdrstream&, const time&);
#else
bool operator<< (oxdrstream&, const any_type&);
- bool operator<< (oxdrstream&, const any_simple_type&);
bool operator<< (oxdrstream&, const qname&);
bool operator<< (oxdrstream&, const string_sequence&);
bool operator<< (oxdrstream&, const time_zone&);
diff --git a/libxsde/xsde/cxx/hybrid/xdr/ostream.ixx b/libxsde/xsde/cxx/hybrid/xdr/ostream.ixx
index f31968f..4dc9bd9 100644
--- a/libxsde/xsde/cxx/hybrid/xdr/ostream.ixx
+++ b/libxsde/xsde/cxx/hybrid/xdr/ostream.ixx
@@ -153,11 +153,6 @@ namespace xsde
{
}
- inline void
- operator<< (oxdrstream&, const any_simple_type&)
- {
- }
-
#else // XSDE_EXCEPTIONS
inline bool oxdrstream::
@@ -265,12 +260,6 @@ namespace xsde
return true;
}
- inline bool
- operator<< (oxdrstream&, const any_simple_type&)
- {
- return true;
- }
-
#endif // XSDE_EXCEPTIONS
}
}