QTfrontend/CocoaInitializer.h
author koda
Tue, 14 Jul 2009 20:02:07 +0000
changeset 2261 57e99c908e7c
child 2377 f3fab2b09e0c
permissions -rw-r--r--
a lot of stuff: - added an autoupdater option * works in mac osx only * the xml file should be hosted on official webserver * checkbox could be moved in a "updates section" of the option page * only english and italian translation provided for new option - reverted openalbridge type for compatibility - german translation fix
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2261
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     1
/*
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     2
 * Copyright (C) 2008 Remko Troncon
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     3
 */
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     4
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     5
#ifndef COCOAINITIALIZER_H
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     6
#define COCOAINITIALIZER_H
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     7
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     8
class CocoaInitializer
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
     9
{
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    10
	public:
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    11
		CocoaInitializer();
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    12
		~CocoaInitializer();
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    13
	
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    14
	private:
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    15
		class Private;
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    16
		Private* d;
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    17
};
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    18
57e99c908e7c a lot of stuff:
koda
parents:
diff changeset
    19
#endif