QTfrontend/util/platform/CocoaInitializer.h
author unc0rr
Wed, 29 May 2013 15:12:06 -0400
changeset 9080 9b42757d7e71
parent 8381 588a8e6e2041
child 9998 736015b847e3
permissions -rw-r--r--
bump copyright year for Andrey entries
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     1
/*
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
     2
 * Hedgewars, a free turn based strategy game
9080
9b42757d7e71 bump copyright year for Andrey entries
unc0rr
parents: 8381
diff changeset
     3
 * Copyright (c) 2004-2013 Andrey Korotaev <unC0Rr@gmail.com>
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
     4
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
     8
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    12
 * GNU General Public License for more details.
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    13
 *
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    14
 * You should have received a copy of the GNU General Public License
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    15
 * along with this program; if not, write to the Free Software
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    17
 */
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    18
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    19
// see original example here http://el-tramo.be/blog/mixing-cocoa-and-qt
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    20
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    21
#ifndef COCOAINITIALIZER_H
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    22
#define COCOAINITIALIZER_H
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    23
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    24
class CocoaInitializer
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    25
{
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2400
diff changeset
    26
    public:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2400
diff changeset
    27
        CocoaInitializer();
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2400
diff changeset
    28
        ~CocoaInitializer();
2377
f3fab2b09e0c And in frontend
nemo
parents: 2261
diff changeset
    29
2948
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2400
diff changeset
    30
    private:
3f21a9dc93d0 Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents: 2400
diff changeset
    31
        class Private;
5095
15dd764b728c fix autorelease pools not being set (issue 209) and format code a little
koda
parents: 2948
diff changeset
    32
        Private* c;
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    33
};
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    34
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    35
#endif