/* */ #include "PStringNumLoop.h" #include "NumberDecorator.h" #include "PStringVisitor.h" namespace aria2 { PStringNumLoop::PStringNumLoop (unsigned int startValue, unsigned int endValue, unsigned int step, const SharedHandle& nd, const SharedHandle& next) : startValue_(startValue), endValue_(endValue), step_(step), numberDecorator_(nd), next_(next) {} PStringNumLoop::PStringNumLoop (unsigned int startValue, unsigned int endValue, unsigned int step, const SharedHandle& nd) : startValue_(startValue), endValue_(endValue), step_(step), numberDecorator_(nd) {} PStringNumLoop::~PStringNumLoop() {} void PStringNumLoop::accept(PStringVisitor& visitor) { visitor.visit(*this); } } // namespace aria2