| 221 | public: |
| 222 | virtual ~CFormatter() {} |
| 223 | void write(std::ostream& out, const Mat& m, const int*, int) const |
| 224 | { |
| 225 | out << "{"; |
| 226 | writeMat(out, m, ',', ' ', m.rows==1); |
| 227 | out << "}"; |
| 228 | } |
| 229 | |
| 230 | void write(std::ostream& out, const void* data, int nelems, int type, const int*, int) const |
| 231 | { |
nothing calls this directly
no test coverage detected