| 24 | inline auto getClassIndexes(const ClassData data) { return util::makeBitRange<ClassData>(data); } |
| 25 | |
| 26 | inline auto getClassData(const std::size_t index) |
| 27 | { |
| 28 | BOOST_ASSERT(index <= MAX_CLASS_INDEX); |
| 29 | return uint8_t{1} << index; |
| 30 | } |
| 31 | |
| 32 | inline bool isValidClassName(const std::string &name) |
| 33 | { |
no outgoing calls
no test coverage detected