| 8 | TYPE64F |
| 9 | }; |
| 10 | class Mat |
| 11 | { |
| 12 | private: |
| 13 | DataType type; |
| 14 | void * data; |
| 15 | public: |
| 16 | Mat(DataType type) : type(type), data(NULL){} |
| 17 | |
| 18 | DataType getType() const { return type; } |
| 19 | }; |
| 20 | |
| 21 | int main() |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected