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

Method IntMat

week13/examples/matclass.cpp:11–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 int * data;
10 public:
11 IntMat(size_t rows, size_t cols):
12 rows(rows), cols(cols)
13 {
14 data = new int[rows * cols]{};
15 }
16 ~IntMat()
17 {
18 delete [] data;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected