1 #ifndef __DALI_INTERNAL_ADAPTOR_BASE_TIMER_INTERFACE_H__
2 #define __DALI_INTERNAL_ADAPTOR_BASE_TIMER_INTERFACE_H__
5 * Copyright (c) 2018 Samsung Electronics Co., Ltd.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
29 * Interface for a timer class
35 * @copydoc Dali::Timer::Start()
37 virtual void Start() = 0;
40 * @copydoc Dali::Timer::Stop()
42 virtual void Stop() = 0;
45 * @copydoc Dali::Timer::Pause()
47 virtual void Pause() = 0;
50 * @copydoc Dali::Timer::Resume()
52 virtual void Resume() = 0;
55 * @copydoc Dali::Timer::SetInterval()
57 virtual void SetInterval( unsigned int intervalInMilliseconds, bool restart ) = 0;
60 * @copydoc Dali::Timer::GetInterval()
62 virtual unsigned int GetInterval() const = 0;
65 * @copydoc Dali::Timer::IsRunning()
67 virtual bool IsRunning() const = 0;
71 * Virtual protected destructor, no deletion through this interface
73 virtual ~TimerInterface() { }
81 #endif // __DALI_INTERNAL_ADAPTOR_BASE_TIMER_INTERFACE_H__