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