aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/StringUtil.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-10-25 22:06:53 (GMT)
committerfluxgen <fluxgen>2003-10-25 22:06:53 (GMT)
commit233a4d85f41e4c76c2e45b0e18ffc84a64251e4e (patch)
tree18b445280ebabb19a47e930b2fdd61a3764aaae1 /src/FbTk/StringUtil.hh
parentab2d5ca0c79ada652513e25d14430ffb439bd38b (diff)
downloadfluxbox-233a4d85f41e4c76c2e45b0e18ffc84a64251e4e.zip
fluxbox-233a4d85f41e4c76c2e45b0e18ffc84a64251e4e.tar.bz2
added removeTrailingWhitespace
Diffstat (limited to 'src/FbTk/StringUtil.hh')
-rw-r--r--src/FbTk/StringUtil.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbTk/StringUtil.hh b/src/FbTk/StringUtil.hh
index 6f3b56a..d7c191c 100644
--- a/src/FbTk/StringUtil.hh
+++ b/src/FbTk/StringUtil.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22//$Id: StringUtil.hh,v 1.6 2003/09/29 14:01:48 fluxgen Exp $ 22//$Id: StringUtil.hh,v 1.7 2003/10/25 22:06:53 fluxgen Exp $
23 23
24#ifndef FBTK_STRINGUTIL_HH 24#ifndef FBTK_STRINGUTIL_HH
25#define FBTK_STRINGUTIL_HH 25#define FBTK_STRINGUTIL_HH
@@ -57,6 +57,7 @@ std::string basename(const std::string &basename);
57 57
58/// removes the first whitespace characters of the string 58/// removes the first whitespace characters of the string
59std::string::size_type removeFirstWhitespace(std::string &str); 59std::string::size_type removeFirstWhitespace(std::string &str);
60std::string::size_type removeTrailingWhitespace(std::string &str);
60 61
61/// Breaks a string into tokens 62/// Breaks a string into tokens
62template <typename Container> 63template <typename Container>