| 112 | } |
| 113 | |
| 114 | int getint() const |
| 115 | { |
| 116 | if (m_value > std::numeric_limits<int>::max()) |
| 117 | return std::numeric_limits<int>::max(); |
| 118 | else if (m_value < std::numeric_limits<int>::min()) |
| 119 | return std::numeric_limits<int>::min(); |
| 120 | return m_value; |
| 121 | } |
| 122 | |
| 123 | std::vector<unsigned char> getvch() const |
| 124 | { |
no test coverage detected