From: Michal MalĂ˝ Date: Sat, 1 Aug 2015 11:46:13 +0000 (+0200) Subject: Add ramp effect to SDL2 effect factory X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=97698e31312a154f486d4f4c41d6e54fde96b52d;p=FFBChecker.git Add ramp effect to SDL2 effect factory --- diff --git a/sdl2ffbeffectfactory.cpp b/sdl2ffbeffectfactory.cpp index c719700..ea28aee 100644 --- a/sdl2ffbeffectfactory.cpp +++ b/sdl2ffbeffectfactory.cpp @@ -11,6 +11,8 @@ std::shared_ptr SDL2FFBEffectFactory::createEffect(FFBEffectTypes typ return std::shared_ptr(new SDL2FFBConstantEffect()); case FFBEffectTypes::PERIODIC: return std::shared_ptr(new SDL2FFBPeriodicEffect()); + case FFBEffectTypes::RAMP: + return std::shared_ptr(new SDL2FFBRampEffect()); default: return std::shared_ptr(new FFBNullEffect()); } diff --git a/sdl2ffbeffectfactory.h b/sdl2ffbeffectfactory.h index 998742b..afb0709 100644 --- a/sdl2ffbeffectfactory.h +++ b/sdl2ffbeffectfactory.h @@ -6,6 +6,7 @@ #include "sdl2ffbconstanteffect.h" #include "sdl2ffbconditioneffect.h" #include "sdl2ffbperiodiceffect.h" +#include "sdl2ffbrampeffect.h" class SDL2FFBEffectFactory {