QTfrontend/CocoaInitializer.h
author koda
Wed, 30 Jun 2010 14:52:48 +0200
changeset 3595 341e407e3754
parent 2948 3f21a9dc93d0
child 5095 15dd764b728c
permissions -rw-r--r--
partially removing DOWNSCALE ifdef -- only two remain and their removal requires dynamic allocation (btw this breaks low quality mode)

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

#ifndef COCOAINITIALIZER_H
#define COCOAINITIALIZER_H

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

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

#endif