MCPcopy Create free account
hub / github.com/ShiqiYu/CPP / Mat

Class Mat

week15/examples/nested-enum1.cpp:10–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8 TYPE64F
9};
10class Mat
11{
12private:
13 DataType type;
14 void * data;
15public:
16 Mat(DataType type) : type(type), data(NULL){}
17
18 DataType getType() const { return type; }
19};
20
21int main()
22{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected