/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
- //
- // PSHTreeGraphView.m
- // PSHTreeGraph - Example 1
- //
- // Created by Ed Preston on 7/25/10.
- // Copyright 2010 Preston Software. All rights reserved.
- //
- #import "PSHTreeGraphView.h"
- @implementation PSHTreeGraphView
- - (id) initWithFrame:(CGRect)frame
- {
- if ((self = [super initWithFrame:frame])) {
- // Initialization code
- }
- return self;
- }
- #pragma mark - Resource Management
- - (void) dealloc
- {
- [super dealloc];
- }
- @end