summaryrefslogtreecommitdiff
path: root/cosv/inc/cosv/streamstr.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cosv/inc/cosv/streamstr.hxx')
-rw-r--r--cosv/inc/cosv/streamstr.hxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/cosv/inc/cosv/streamstr.hxx b/cosv/inc/cosv/streamstr.hxx
index 1bcccc31..8890cd28 100644
--- a/cosv/inc/cosv/streamstr.hxx
+++ b/cosv/inc/cosv/streamstr.hxx
@@ -268,20 +268,6 @@ class StreamStrLock
StreamStr * pStr;
};
-/** Splits a string into tokens by whitespace.
-
- The tokens are added to the end of o_list.
-*/
-void Split(
- std::vector<String> &
- o_list,
- const char * i_text );
-inline void Join(
- StreamStr & o_text,
- std::vector<String> &
- i_list,
- const char * i_sLink = " ");
-
// IMPLEMENTATION
inline const char *
@@ -330,17 +316,6 @@ inline StreamStr::iterator
StreamStr::end()
{ return pEnd; }
-inline void
-Join( StreamStr & o_text,
- std::vector<String> & i_list,
- const char * i_sLink )
-{
- o_text.operator_join(i_list.begin(),i_list.end(),i_sLink);
-}
-
-
-
-
} // namespace csv
#endif