]> git.mxchange.org Git - simgear.git/blob - simgear/misc/sg_sleep.hxx
Add optional attribute condition to "copyProperties".
[simgear.git] / simgear / misc / sg_sleep.hxx
1
2 // Written by James Turner, started July 2010.
3 //
4 // Copyright (C) 2010  Curtis L. Olson - http://www.flightgear.org/~curt
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Library General Public
8 // License as published by the Free Software Foundation; either
9 // version 2 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Library General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 //
20 // $Id$
21
22
23 #ifndef _SG_SLEEP_HXX
24 #define _SG_SLEEP_HXX
25
26
27 #include <simgear/compiler.h>
28
29
30 namespace simgear
31 {
32
33 void sleepForSeconds(int seconds);
34
35 void sleepForMSec(int msec);
36
37 } // of namespace simgear
38
39 #endif // _SG_SLEEP_HXX
40
41