WvStreams
wvstringtable.cc
00001 /*
00002  * Worldvisions Weaver Software:
00003  *   Copyright (C) 1997-2002 Net Integration Technologies, Inc.
00004  *
00005  * Some helper functions for WvStringTable.
00006  */
00007 #include "wvstringtable.h"
00008 #include "strutils.h"
00009 
00010 
00011 WvString WvStringTable::join(const char *joinchars) const
00012 {
00013     return ::strcoll_join(*this, joinchars);
00014 }
00015 
00016 
00017 void WvStringTable::split(WvStringParm s, const char *splitchars,
00018     int limit)
00019 {
00020     return ::strcoll_split(*this, s, splitchars, limit);
00021 }
00022 
00023 void WvStringTable::splitstrict(WvStringParm s, const char *splitchars,
00024     int limit)
00025 {
00026     return ::strcoll_splitstrict(*this, s, splitchars, limit);
00027 }