1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/NSTableDataSource.h
3 // Purpose: wxCocoaNSTableDataSource Objective-C class
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef __WX_COCOA_NSTABLEDATASOURCE_H__
13 #define __WX_COCOA_NSTABLEDATASOURCE_H__
15 #import <Foundation/NSObject.h>
17 // ============================================================================
18 // @class wxCocoaNSTableDataSource
19 // ============================================================================
20 @interface wxCocoaNSTableDataSource
: NSObject
24 // NSTableDataSource is a loosely defined protocol consisting of the
25 // following two message implementations
26 - (int)numberOfRowsInTableView
: (NSTableView
*)tableView
;
27 - (id
)tableView
:(NSTableView
*)tableView
28 objectValueForTableColumn
: (NSTableColumn
*)tableColumn
30 @end
// wxCocoaNSTableDataSource
32 #endif // _WX_COCOA_NSTABLEDATASOURCE_H_