eis/eqpalg/.do_not_use/otheralg/exp_slips.000cc

13 lines
388 B
Plaintext
Raw Permalink Normal View History

#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() {}