1
2
3
4
5 #include <sng2html/sng2html/CharSet.hpp>
6
7 namespace sng2html { namespace sng2html {
8
9 CharSet::CharSet() : inverse(false)
10 {
11 }
12
13 void CharSet::AddRange(const soulng::parser::Range& range)
14 {
15 ranges.push_back(range);
16 }
17
18 } }