10 #ifndef __SOT_INTEGRATOR_EULER_IMPL_H__ 11 #define __SOT_INTEGRATOR_EULER_IMPL_H__ 25 #if defined(integrator_euler_EXPORTS) 26 #define INTEGRATOR_EULER_EXPORT __declspec(dllexport) 28 #define INTEGRATOR_EULER_EXPORT __declspec(dllimport) 31 #define INTEGRATOR_EULER_EXPORT 35 #define DECLARE_SPECIFICATION(className, sotSigType, sotCoefType) \ 36 class INTEGRATOR_EULER_EXPORT className \ 37 : public IntegratorEuler<sotSigType, sotCoefType> { \ 39 std::string getTypeName(void); \ 40 className(const std::string &name); \ 43 #define DECLARE_SPECIFICATION(className, sotSigType, sotCoefType) \ 44 typedef IntegratorEuler<sotSigType, sotCoefType> className;
#define DECLARE_SPECIFICATION(className, sotSigType, sotCoefType)