QTfrontend/CocoaInitializer.h
changeset 5095 15dd764b728c
parent 2948 3f21a9dc93d0
child 6700 e04da46ee43c
equal deleted inserted replaced
5093:7eb35faa7f7a 5095:15dd764b728c
     1 /*
     1 /*
     2  * Copyright (C) 2008 Remko Troncon
     2  * Hedgewars, a free turn based strategy game
       
     3  * Copyright (c) 2005-2011 Andrey Korotaev <unC0Rr@gmail.com>
       
     4  *
       
     5  * This program is free software; you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation; version 2 of the License
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12  * GNU General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU General Public License
       
    15  * along with this program; if not, write to the Free Software
       
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
     3  */
    17  */
       
    18 
       
    19 // see original example here http://el-tramo.be/blog/mixing-cocoa-and-qt
     4 
    20 
     5 #ifndef COCOAINITIALIZER_H
    21 #ifndef COCOAINITIALIZER_H
     6 #define COCOAINITIALIZER_H
    22 #define COCOAINITIALIZER_H
     7 
    23 
     8 class CocoaInitializer
    24 class CocoaInitializer
    11         CocoaInitializer();
    27         CocoaInitializer();
    12         ~CocoaInitializer();
    28         ~CocoaInitializer();
    13 
    29 
    14     private:
    30     private:
    15         class Private;
    31         class Private;
    16         Private* d;
    32         Private* c;
    17                 Private* c;
       
    18 };
    33 };
    19 
    34 
    20 #endif
    35 #endif