orocos_cpp
PkgConfigHelper.hpp
Go to the documentation of this file.
1 #ifndef PKGCONFIGHELPER_H
2 #define PKGCONFIGHELPER_H
3 
4 #include <string>
5 #include <vector>
6 
7 namespace orocos_cpp
8 {
9 
11 {
12 public:
20  static bool parsePkgConfig(const std::string &pkgConfigFileName, const std::vector<std::string> &searchedFields, std::vector<std::string> &result);
21 
25  static bool solveString(std::string &input, const std::string &replace, const std::string &by);
26 };
27 
28 }//end of namespace
29 #endif // PKGCONFIGHELPER_H
static bool solveString(std::string &input, const std::string &replace, const std::string &by)
Definition: PkgConfigHelper.cpp:9
Definition: ConfigurationHelper.hpp:13
Definition: PkgConfigHelper.hpp:10
static bool parsePkgConfig(const std::string &pkgConfigFileName, const std::vector< std::string > &searchedFields, std::vector< std::string > &result)
Definition: PkgConfigHelper.cpp:19