/GraphDraw_Mixed/GDGraphView.h
http://github.com/jsyedidia/nugraphdraw · C Header · 15 lines · 8 code · 2 blank · 5 comment · 0 complexity · 55f516f313ddb1143c42ccfabc200f8e MD5 · raw file
- // Created by Jonathan Yedidia on 5/31/08.
- // Copyright 2008. All rights reserved.
- // Objective-C code based on Aaron Hillegass'
- // "GraphLaughs" PyObjC application, available online at
- // http://weblog.bignerdranch.com/pythonex/GraphLaughs.tgz
- #import <Cocoa/Cocoa.h>
- @class GDGraph;
- @interface GDGraphView : NSView
- {
- GDGraph *graph;
- }
- - (void)setGraph:(GDGraph *)g;
- @end