81e7114c56180d6541b11c8580ad744d2df90530
[platform/framework/web/web-provider.git] / src / Core / BoxUpdateTimer.h
1 /*
2  * Copyright (c) 2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Flora License, Version 1.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://floralicense.org/license/
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    BoxUpdateTimer.h
18  * @author  Yunchan Cho (yunchan.cho@samsung.com)
19  */
20 #ifndef BOX_UPDATE_TIMER_H
21 #define BOX_UPDATE_TIMER_H
22
23 #include <Ecore.h>
24 #include "Util/ITimer.h"
25
26 class BoxUpdateTimer: public ITimer {
27     public:
28         static ITimerPtr create(float period, Ecore_Task_Cb callback, void* data)
29         {
30             return ITimerPtr(new BoxUpdateTimer(period, callback, data));
31         };
32         void start();
33         void stop();
34         void restart();
35         void setPeriod(float period);
36         ~BoxUpdateTimer();
37
38     private:
39         explicit BoxUpdateTimer(float period, Ecore_Task_Cb callback, void* data);
40         float m_period;
41         void* m_data;
42         Ecore_Task_Cb m_callback;
43         Ecore_Timer* m_timer;
44 };
45
46 #endif // BOX_UPDATE_TIMER_H