1
2
3
4
5
6 #include <soulng/lexer/ParsingLog.hpp>
7
8 namespace soulng { namespace lexer {
9
10 ParsingLog::ParsingLog() : maxLineLength(80)
11 {
12 }
13
14 ParsingLog::ParsingLog(int maxLineLength_) : maxLineLength(maxLineLength_)
15 {
16 }
17
18 ParsingLog::~ParsingLog()
19 {
20 }
21
22 int ParsingLog::MaxLineLength() const
23 {
24 return maxLineLength;
25 }
26
27 } }