Line data Source code
1 : #include "Module/Stateful/Switcher/Switcher.hpp" 2 : 3 : using namespace spu; 4 : using namespace spu::module; 5 : 6 : Switcher* 7 2195 : Switcher::clone() const 8 : { 9 2195 : auto m = new Switcher(*this); 10 2195 : m->deep_copy(*this); 11 2195 : return m; 12 : } 13 : 14 : void 15 14314 : Switcher::reset() 16 : { 17 14314 : this->path = this->get_n_data_sockets() - 1; 18 14313 : }