#ifndef _FL_CONV_ #define _FL_CONV_ #include class GenoConv_fL0 : public GenoConverter { public: GenoConv_fL0() : GenoConverter() { name = "L-System encoding"; in_format = 'L'; out_format = '0'; mapsupport = 1; } SString convert(SString &i, MultiMap *map, bool using_checkpoints); ~GenoConv_fL0() {} }; #endif // _FL_CONV_