summaryrefslogtreecommitdiffstats
path: root/src/Common/Util.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-10-22 20:56:56 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-10-22 20:56:56 +0200
commit1226366351300139f2d8b7c10fee29d744591426 (patch)
treed8b927ce6a75370e741677cf59c1a4b00eab1f01 /src/Common/Util.cpp
parent6bd58c61a1668d336f45443c602e850e965ad368 (diff)
downloadmad-1226366351300139f2d8b7c10fee29d744591426.tar
mad-1226366351300139f2d8b7c10fee29d744591426.zip
Alte Split-Funktion durch neuen Tokenizer ersetzt
Diffstat (limited to 'src/Common/Util.cpp')
-rw-r--r--src/Common/Util.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/Common/Util.cpp b/src/Common/Util.cpp
deleted file mode 100644
index f34aa1e..0000000
--- a/src/Common/Util.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Util.cpp
- *
- * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
- *
- * This program is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "Util.h"
-
-namespace Mad {
-namespace Common {
-
-std::string Util::trim(const std::string &str) {
- size_t beg, end;
-
- beg = str.find_first_not_of(" \t");
- end = str.find_last_not_of(" \t");
-
- if(beg == std::string::npos)
- beg = 0;
-
- if(end != std::string::npos)
- end = end-beg+1;
-
- return str.substr(beg, end);
-}
-
-}
-}