| 820 | }; |
| 821 | |
| 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: |
| 828 | Printer &p; |
| 829 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected