13 lines
388 B
Plaintext
13 lines
388 B
Plaintext
|
|
#include <eqpalg/algs/exp_slips.h>
|
||
|
|
|
||
|
|
ExpSlips::ExpSlips(const string& name, const mix_cc::json& rule_json,
|
||
|
|
const string& ruleId, size_t exp_type)
|
||
|
|
: ExpBase(name, rule_json, ruleId, exp_type) {
|
||
|
|
is_running_ = false;
|
||
|
|
logger_.reset(
|
||
|
|
new LOG("ExpSlips-" + std::to_string(exp_type) + ":" + rule_name_,
|
||
|
|
AUTO_CATCH_PID));
|
||
|
|
}
|
||
|
|
|
||
|
|
ExpSlips::~ExpSlips() {}
|