author | nemo |
Mon, 22 Mar 2010 20:19:06 +0000 | |
changeset 3049 | 05ec3482930d |
parent 2948 | 3f21a9dc93d0 |
child 5095 | 15dd764b728c |
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 |
{ |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2400
diff
changeset
|
10 |
public: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2400
diff
changeset
|
11 |
CocoaInitializer(); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2400
diff
changeset
|
12 |
~CocoaInitializer(); |
2377 | 13 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2400
diff
changeset
|
14 |
private: |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2400
diff
changeset
|
15 |
class Private; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2400
diff
changeset
|
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 |