MCPcopy Create free account
hub / github.com/acl-dev/acl / reset

Method reset

lib_acl_cpp/src/hsocket/hsrow.cpp:27–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27void hsrow::reset(int ncolum)
28{
29 icolum_ = 0;
30 row_.clear();
31 if (ncolum <= ncolum_) {
32 return;
33 }
34 delete[] colums_;
35 ncolum_ = ncolum;
36 colums_ = new string[ncolum_];
37}
38
39void hsrow::push_back(const char* value, size_t dlen)
40{

Callers 1

hsclient.cppFile · 0.45

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected