| 810 | class ObjectWrapper { |
| 811 | public: |
| 812 | ObjectWrapper(Printer &p, std::string object_name) : p(p) { p.ObjectStart(object_name); } |
| 813 | ObjectWrapper(Printer &p, std::string object_name, size_t count_subobjects) : p(p) { |
| 814 | p.ObjectStart(object_name, static_cast<int32_t>(count_subobjects)); |
| 815 | } |
nothing calls this directly
no test coverage detected