diff --git a/string.cpp b/string.cpp index 7a6c0d18..4601d1a6 100644 --- a/string.cpp +++ b/string.cpp @@ -64,6 +64,24 @@ tokeniser::cend (void) const } +//----------------------------------------------------------------------------- +template +typename tokeniser::iterator +tokeniser::begin (void) const +{ + return cbegin (); +} + + +//----------------------------------------------------------------------------- +template +typename tokeniser::iterator +tokeniser::end (void) const +{ + return cend (); +} + + /////////////////////////////////////////////////////////////////////////////// template tokeniser::iterator::iterator (range_type _range, value_type _separator):