rulecomp.h 295 B

123456789101112
  1. #ifndef RULECOMP_H
  2. #define RULECOMP_H
  3. #include <set>
  4. #include <string>
  5. #include "Lexer.h"
  6. std::set<int> getValues(const std::string& range, int firstvalue, int lastvalue, int altstringmode = 0);
  7. std::set<int> getValues(Lexer& p, int firstvalue, int lastvalue, int altstringmode = 0);
  8. #endif