OpenLibrary
str_op.hpp
1 
2 #ifndef STR_OP_HPP
3 #define STR_OP_HPP
4 
5 #include <string>
6 
7 #include "common_export.h"
8 
9 namespace Strings
10 {
11  COMMON_EXPORT std::string *stripQuotas(std::string *s);
12  COMMON_EXPORT std::string stripBlanks(const std::string &s);
13 }
14 
15 #endif
Definition: str_op.cpp:5