#include "plan_rule.hpp" #include "simple_plan.hpp" PlanRule::PlanRule(ptrSimplePlan pp, unsigned int prio, unsigned int weight, ptrSimplePlan plan, unsigned int flags, unsigned int stt, unsigned int fails, unsigned int successes) : _plan(plan), BaseRule(pp, prio, weight, flags, stt, fails, successes) { } int PlanRule::GetAction() { return _plan->GetAction(); }