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