Abizern / sobezier

A simple tutorial project for Cocoa / Objective-C

This URL has Read+Write access

sobezier / SOBezierView.h
100644 18 lines (13 sloc) 0.262 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// SOBezierView.h
// SOBezier
//
// Created by Abizer Nasir on 29/07/2008.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
@class MyDocument;
 
 
@interface SOBezierView : NSView {
    IBOutlet MyDocument *doc;
}
 
@end