00001
00007
#ifndef STRINGUTILS_HPP_INCLUDED
00008
#define STRINGUTILS_HPP_INCLUDED
00009
00010
#include <string>
00011
00021 std::string
00022
changeExtension(std::string
const & to_change,
00023 std::string
const & new_ext);
00024
00025
00032 std::string
00033
operator*(std::string
const & to_multiply,
00034
unsigned multiplier);
00035
00036
00043
bool
00044
endsWith(std::string
const & test_string,
00045 std::string
const & ending);
00046
00047
00051 std::string
00052
upperCase(std::string
const & to_convert);
00053
00054
#endif // STRINGUTILS_HPP_INCLUDED