MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / VarData

Method VarData

gui/qt/vartablemodel.cpp:12–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10Q_DECLARE_METATYPE(calc_var_t)
11
12VarTableModel::VarData::VarData(const calc_var_t &var) : info(var), previewState(PreviewState::Outdated), checked(false) {
13 info.data = new uint8_t[var.size];
14 memcpy(info.data, var.data, var.size);
15}
16
17VarTableModel::VarData::~VarData() {
18 delete[] info.data;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected