1 // =================================
 2 // Copyright (c) 2020 Seppo Laakko
 3 // Distributed under the MIT license
 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 } } // namespace sng2html::sng2html