From 97698e31312a154f486d4f4c41d6e54fde96b52d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Sat, 1 Aug 2015 13:46:13 +0200 Subject: [PATCH] Add ramp effect to SDL2 effect factory --- sdl2ffbeffectfactory.cpp | 2 ++ sdl2ffbeffectfactory.h | 1 + 2 files changed, 3 insertions(+) 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 { -- 2.43.5