gwenhywfar  4.6.0beta
CocoaWindow.m
Go to the documentation of this file.
1 //
2 // CocoaLabel.m
3 //
4 //
5 // Created by Samuel Strupp on 10.08.10.
6 //
7 
8 #ifdef HAVE_CONFIG_H
9 # include <config.h>
10 #endif
11 
12 
13 
14 #import "CocoaWindow.h"
15 
16 #ifndef COCOA_WINDOW_MM
17 #define COCOA_WINDOW_MM
18 
19 @implementation CocoaWindow
20 
21 
22 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)windowStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation {
23  self = [super initWithContentRect:contentRect styleMask:windowStyle backing:bufferingType defer:deferCreation];
24  if (self) {
25 
26  }
27  return self;
28 }
29 
30 -(void) dealloc {
31  [super dealloc];
32 }
33 
34 @end
35 
36 #endif