librcsb-core-wrapper  1.000
GenCont.h
Go to the documentation of this file.
1 //$$FILE$$
2 //$$VERSION$$
3 //$$DATE$$
4 //$$LICENSE$$
5 
6 
7 #ifndef GENCONT_H
8 #define GENCONT_H
9 
10 
11 #include <string>
12 #include <vector>
13 
14 #include <rcsb/GenString.h>
15 
16 
17 class GenCont
18 {
19  public:
20  static bool IsInVector(const std::string& element,
21  const std::vector<std::string>& contVector, const Char::eCompareType
22  compareType = Char::eCASE_SENSITIVE);
23  static bool IsInVectorCi(const std::string& element,
24  const std::vector<std::string>& contVector);
25 
26  private:
27  GenCont();
28 
29  ~GenCont();
30 };
31 
32 
33 #endif // GENCONT_H not defined
34