| 822 | class ArrayWrapper { |
| 823 | public: |
| 824 | ArrayWrapper(Printer &p, std::string array_name, size_t element_count = 0) : p(p) { p.ArrayStart(array_name, element_count); } |
| 825 | ~ArrayWrapper() { p.ArrayEnd(); } |
| 826 | |
| 827 | private: |
nothing calls this directly
no test coverage detected