1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/NSTableDataSource.h
3 // Purpose: wxCocoaNSTableDataSource Objective-C class
4 // Author: David Elliott
7 // Copyright: (c) 2003 David Elliott
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef __WX_COCOA_NSTABLEDATASOURCE_H__
12 #define __WX_COCOA_NSTABLEDATASOURCE_H__
14 #include "wx/cocoa/objc/objc_uniquifying.h"
16 #import <Foundation/NSObject.h>
18 // ============================================================================
19 // @class wxCocoaNSTableDataSource
20 // ============================================================================
21 @interface wxCocoaNSTableDataSource
: NSObject
25 // NSTableDataSource is a loosely defined protocol consisting of the
26 // following two message implementations
27 - (int)numberOfRowsInTableView
: (NSTableView
*)tableView
;
28 - (id
)tableView
:(NSTableView
*)tableView
29 objectValueForTableColumn
: (NSTableColumn
*)tableColumn
31 @end
// wxCocoaNSTableDataSource
32 WX_DECLARE_GET_OBJC_CLASS(wxCocoaNSTableDataSource
,NSObject
)
34 #endif // _WX_COCOA_NSTABLEDATASOURCE_H_