/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

  1. // Created by Jonathan Yedidia on 5/31/08.
  2. // Copyright 2008. All rights reserved.
  3. // Objective-C code based on Aaron Hillegass'
  4. // "GraphLaughs" PyObjC application, available online at
  5. // http://weblog.bignerdranch.com/pythonex/GraphLaughs.tgz
  6. #import <Cocoa/Cocoa.h>
  7. @class GDGraph;
  8. @interface GDGraphView : NSView
  9. {
  10. GDGraph *graph;
  11. }
  12. - (void)setGraph:(GDGraph *)g;
  13. @end