public
Description: A Mac OS X photo uploader program for my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photoupload/
Clone URL: git://github.com/dustin/photoupload.git
photoupload / DumpTable.h
100644 20 lines (13 sloc) 0.318 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// DumpTable.h
// PhotoUpload
//
// Created by Dustin Sallings on 2005/11/23/.
// Copyright 2005 Dustin Sallings <dustin@spy.net>. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
@interface DumpTable : NSTableView {
 
  IBOutlet id imgStorage;
 
}
 
-(BOOL)performDragOperation:(id <NSDraggingInfo>)sender;
 
@end