blob: 6b45338a3a1fff43808342443d205cf4a954fca7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <ore/StringPool.h>
namespace ore {
int StringPool::GetLength() const {
return length;
}
void StringPool::SetLength(int len) {
length = len;
}
} // namespace ore
|