Line data Source code
1 : #include "Module/Stateless/Stateless.hpp" 2 : 3 : using namespace spu; 4 : using namespace spu::module; 5 : 6 66 : Stateless::Stateless() 7 66 : : Module() 8 : { 9 66 : } 10 : 11 : Stateless* 12 1100 : Stateless::clone() const 13 : { 14 1100 : auto m = new Stateless(*this); 15 1100 : m->deep_copy(*this); 16 1100 : return m; 17 : }