// // ToyTimeIndicatorInterface.h // WattsenglishToyApp // // Created by Katarzyna Kalinowska-Górska on 28/12/2019. // #ifndef ToyTimeIndicatorInterface_h #define ToyTimeIndicatorInterface_h class ToyTimeIndicatorInterface { public: virtual void setProgressFrac(float progressFrac) = 0; virtual void setProgress(float progress) = 0; virtual void startTimeAnimation(float timeDuration) = 0; virtual void stopTimeAnimation() = 0; }; #endif /* ToyTimeIndicatorInterface_h */