123456789101112131415161718192021222324252627282930313233 |
- #ifndef EPID_COMMON_TESTHELPER_TESTAPP_TESTHELPER_H_
- #define EPID_COMMON_TESTHELPER_TESTAPP_TESTHELPER_H_
- #include <string>
- #include <vector>
- void split_filter(std::vector<std::string>* positive,
- std::vector<std::string>* negative, std::string filter_expr);
- std::string join_filter(std::vector<std::string> const& positive,
- std::vector<std::string> const& negative);
- #endif
|