1 /*
2  * Copyright (C) 2014-2015, Siemens AG
3  * Author: Johannes Najjar
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2
7  * as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12  * See the GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software Foundation,
16  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  */
18 
19 #ifndef CLEANENTRIES_HPP_
20 #define CLEANENTRIES_HPP_
21 
22 #include <string>
23 #include "regex.hpp"
24 #include "scanners.hpp"
25 
26 #include "libfossUtils.hpp"
27 
28 string cleanMatch(const string& sText, const match& m);
29 
30 
31 #endif /* CLEANENTRIES_HPP_ */
32