/Example 1/Classes/View/PSHTreeGraphView.m

https://code.google.com/ · Objective C · 32 lines · 14 code · 10 blank · 8 comment · 1 complexity · 2c15b862e714014f1346337e2bc65dc5 MD5 · raw file

  1. //
  2. // PSHTreeGraphView.m
  3. // PSHTreeGraph - Example 1
  4. //
  5. // Created by Ed Preston on 7/25/10.
  6. // Copyright 2010 Preston Software. All rights reserved.
  7. //
  8. #import "PSHTreeGraphView.h"
  9. @implementation PSHTreeGraphView
  10. - (id) initWithFrame:(CGRect)frame
  11. {
  12. if ((self = [super initWithFrame:frame])) {
  13. // Initialization code
  14. }
  15. return self;
  16. }
  17. #pragma mark - Resource Management
  18. - (void) dealloc
  19. {
  20. [super dealloc];
  21. }
  22. @end