QTfrontend/CocoaInitializer.h
author sheepluva
Sun, 31 Oct 2010 02:50:15 +0100
changeset 4038 8972dd38bbad
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
potential fix for issue #86: 'Objects behind a portal will sometimes go through the portal.' please test

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

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

#endif