// This file is a part of the Framsticks GDK library. // Copyright (C) 2002-2011 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 automatically registers the "standard" converters available in the GDK. /// All you have to do is create a single instance of this class somewhere in your application. /// @see genotest.cpp class DefaultGenoConvManager: public GenoConvManager { public: DefaultGenoConvManager(); }; #endif