1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-11 14:19:49 +00:00

Move split_tags to core.

This commit is contained in:
King_DuckZ 2016-07-10 17:12:19 +01:00
parent 4bd7c3515a
commit f12d498e40
8 changed files with 17 additions and 15 deletions

View file

@ -1,31 +0,0 @@
/* Copyright 2015, 2016, Michele Santullo
* This file is part of "dindexer".
*
* "dindexer" 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.
*
* "dindexer" 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 "dindexer". If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef id913CE9D2F60745349F39F2C82455973E
#define id913CE9D2F60745349F39F2C82455973E
#include <vector>
#include <string>
#include <boost/utility/string_ref.hpp>
#include "helpers/compatibility.h"
namespace dinlib {
std::vector<boost::string_ref> split_and_trim ( const std::string& parList, char parSeparator ) a_pure;
std::vector<boost::string_ref> split_tags ( const std::string& parCommaSeparatedList ) a_pure;
} //namespace dinlib
#endif