Grayson / nusomewhere

A GUI for NuAnywhere.

This URL has Read+Write access

nusomewhere / NuInspect.h
100644 28 lines (20 sloc) 0.5 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// NuInspect.h
// NuSomewhere
//
// Created by Grayson Hansard on 4/23/09.
// Copyright 2009 From Concentrate Software. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
#import <Nu/Nu.h>
 
 
@interface NuInspect : NSObject {
IBOutlet NSTableView *tableView;
IBOutlet NSTextView *textView;
IBOutlet NSWindow *window;
NSMutableArray *_inspectedObjects;
}
 
@property (retain) NSMutableArray *inspectedObjects;
 
+ (id)sharedInstance;
 
- (id)selection;
- (void)createInfoForObject:(id)obj;
 
@end