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

Method diff_manager

lib_acl_cpp/src/stdlib/diff_manager.cpp:9–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7namespace acl {
8
9diff_manager::diff_manager(long long range_from /* = -1 */,
10 long long range_to /* = -1 */)
11: dbuf_(4, 10000)
12{
13 dbuf_.set_increment(10000);
14
15 if (range_from > 0 && range_to >= range_from) {
16 range_from_ = range_from;
17 range_to_ = range_to;
18 } else {
19 range_from_ = -1;
20 range_to_ = -1;
21 }
22}
23
24diff_manager::~diff_manager()
25{

Callers

nothing calls this directly

Calls 1

set_incrementMethod · 0.80

Tested by

no test coverage detected