// This file is a part of the Framsticks GDK. // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. // Refer to http://www.framsticks.com/ for further information. #ifndef _CONV_FF_H_ #define _CONV_FF_H_ #include #include #include // The f9->f0 converter class GenoConv_fF0: public GenoConverter { public: GenoConv_fF0(); //implementation of the GenoConverter method SString convert(SString &in, MultiMap *map); protected: //auxiliary methods //... }; #endif