author | smxx |
Wed, 10 Feb 2010 17:13:49 +0000 | |
changeset 2794 | befd3808c63a |
parent 2400 | 2422ea85d100 |
child 2948 | 3f21a9dc93d0 |
permissions | -rw-r--r-- |
2261 | 1 |
/* |
2 |
* Copyright (C) 2008 Remko Troncon |
|
3 |
*/ |
|
4 |
||
5 |
#ifndef COCOAINITIALIZER_H |
|
6 |
#define COCOAINITIALIZER_H |
|
7 |
||
8 |
class CocoaInitializer |
|
9 |
{ |
|
10 |
public: |
|
11 |
CocoaInitializer(); |
|
12 |
~CocoaInitializer(); |
|
2377 | 13 |
|
2261 | 14 |
private: |
15 |
class Private; |
|
16 |
Private* d; |
|
2400
2422ea85d100
added a utility that warns the user to install hedgewars when it's run from the diskimage
koda
parents:
2377
diff
changeset
|
17 |
Private* c; |
2261 | 18 |
}; |
19 |
||
20 |
#endif |