From 1226366351300139f2d8b7c10fee29d744591426 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 22 Oct 2008 20:56:56 +0200 Subject: Alte Split-Funktion durch neuen Tokenizer ersetzt --- src/Common/Util.cpp | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/Common/Util.cpp (limited to 'src/Common/Util.cpp') 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 - * - * 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 . - */ - -#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); -} - -} -} -- cgit v1.2.3