QTfrontend/CocoaInitializer.h
author nemo
Mon, 08 Nov 2010 22:26:44 -0500
changeset 4225 ce9e2b05e9c1
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
Revert yet again for breaking stuff. No more chances on this. If there'd been a release, this would have been twice with serious breakage. P.S. - as per koda's complaint last time, only reverted the non-iphone, probably means iphone is now broken. Oh well.

/*
 * Copyright (C) 2008 Remko Troncon
 */

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

class CocoaInitializer
{
    public:
        CocoaInitializer();
        ~CocoaInitializer();

    private:
        class Private;
        Private* d;
                Private* c;
};

#endif