00001
#ifndef STRINGUTIL_H
00002
#define STRINGUTIL_H
00003
00004
#include <exception>
00005
#include <string>
00006
00007
#include "common.h"
00008
00009 BOREALIS_NAMESPACE_BEGIN;
00010
00011
00012
00013
00014
00015
00016
00017
00018 string
getSubstringBeforeChar(
const string & s,
00019 string::size_type startIdx,
00020
const char terminator)
00021
throw (exception);
00022
00023
00024
00025
00026
00027
char *
newCstrCopy(
const string & s)
00028
throw (exception);
00029
00030 BOREALIS_NAMESPACE_END;
00031
00032
#endif