Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifdef HAVE_CONFIG_H
00009 # include <config.h>
00010 #endif
00011
00012
00013
00014 #import "CocoaWindow.h"
00015
00016 #ifndef COCOA_WINDOW_MM
00017 #define COCOA_WINDOW_MM
00018
00019 @implementation CocoaWindow
00020
00021
00022 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation {
00023 self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
00024 if (self) {
00025
00026 }
00027 return self;
00028 }
00029
00030 -(void) dealloc {
00031 [super dealloc];
00032 }
00033
00034 @end
00035
00036 #endif