// 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 _DEFGENOCONV_H_ #define _DEFGENOCONV_H_ #include "genoconv.h" /// This GenoConvManager subclass allows you to add all "standard" converters in one go class DefaultGenoConvManager: public GenoConvManager { public: void addDefaultConverters();///< add all converters configured in gen-config file }; #endif