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 #include "wx/cocoa/objc/objc_uniquifying.h"
17 #import <Foundation/NSObject.h>
19 // ============================================================================
20 // @class wxCocoaNSTableDataSource
21 // ============================================================================
22 @interface wxCocoaNSTableDataSource
: NSObject
26 // NSTableDataSource is a loosely defined protocol consisting of the
27 // following two message implementations
28 - (int)numberOfRowsInTableView
: (NSTableView
*)tableView
;
29 - (id
)tableView
:(NSTableView
*)tableView
30 objectValueForTableColumn
: (NSTableColumn
*)tableColumn
32 @end
// wxCocoaNSTableDataSource
33 WX_DECLARE_GET_OBJC_CLASS(wxCocoaNSTableDataSource
,NSObject
)
35 #endif // _WX_COCOA_NSTABLEDATASOURCE_H_