]> git.sesse.net Git - vlc/blob - modules/gui/skins2/macosx/macosx_timer.hpp
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / skins2 / macosx / macosx_timer.hpp
1 /*****************************************************************************
2  * macosx_timer.hpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef MACOSX_TIMER_HPP
25 #define MACOSX_TIMER_HPP
26
27 #include "../src/os_timer.hpp"
28
29 // Forward declaration
30 class MacOSXTimerLoop;
31 class CmdGeneric;
32
33
34 // MacOSX specific timer
35 class MacOSXTimer: public OSTimer
36 {
37     public:
38         MacOSXTimer( intf_thread_t *pIntf, CmdGeneric &rCmd );
39         virtual ~MacOSXTimer();
40
41         /// (Re)start the timer with the given delay (in ms). If oneShot is
42         /// true, stop it after the first execution of the callback.
43         virtual void start( int delay, bool oneShot );
44
45         /// Stop the timer
46         virtual void stop();
47
48     private:
49         /// Command to execute
50         CmdGeneric &m_rCommand;
51 };
52
53
54 #endif