julius / showcase

Quicksilver Interface

This URL has Read+Write access

showcase / SCCollectingSearchObject.h
100644 22 lines (16 sloc) 0.439 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// SCCollectingSearchObject.h
// Showcase
//
// Created by Julius Eckert on 04.05.08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
#import "QSCollectingSearchObjectView.h"
#import "QSMySearchObject.h"
 
@interface SCCollectingSearchObject : QSCollectingSearchObjectView {
QSMySearchObject* parentSelector;
}
 
 
-(void) drawRect:(NSRect)rect;
-(void) setParentSel:(QSMySearchObject*)so;
 
@end