Rev 397 | Rev 449 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 397 | Rev 440 | ||
---|---|---|---|
Line 16... | Line 16... | ||
16 | * Free Software Foundation, Inc., * |
16 | * Free Software Foundation, Inc., * |
17 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
17 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
18 | ***************************************************************************/ |
18 | ***************************************************************************/ |
Line 19... | Line 19... | ||
19 | 19 | ||
20 | #include "ToolBox.h" |
20 | #include "ToolBox.h" |
Line 21... | Line 21... | ||
21 | #include "../com/Parser.h" |
21 | #include "../libMK/Parser.h" |
22 | 22 | ||
23 | /** |
23 | /** |
Line 28... | Line 28... | ||
28 | void ToolBox::wait(int Time) |
28 | void ToolBox::wait(int Time) |
29 | { |
29 | { |
30 | #ifndef _WIN32_ |
30 | #ifndef _WIN32_ |
31 | usleep(Time); |
31 | usleep(Time); |
32 | #else |
32 | #else |
33 | //FIXME: implement sleep for win_32 |
33 | //TODO: implement sleep for win_32 |
34 | //(or kick this function completely) |
34 | //(or kick this function completely) |
35 | // sleep(Time); |
35 | // sleep(Time); |
36 | #endif |
36 | #endif |
37 | } |
37 | } |