File: OldVariableList.h

package info (click to toggle)
wcalc 2.2.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,228 kB
  • ctags: 698
  • sloc: ansic: 6,918; objc: 1,835; sh: 766; yacc: 644; lex: 573; makefile: 78
file content (20 lines) | stat: -rw-r--r-- 601 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *  VariableList.h
 *  Wcalc
 *
 *  Created by Kyle Wheeler on Sun Jan 20 2002.
 *  Copyright (c) 2001 Kyle Wheeler. All rights reserved.
 *
 */
#ifndef VARIABLELIST_H
#define VARIABLELIST_H
#import <AppKit/AppKit.h>

@interface NSTableDataSource : NSObject
{
}
- (int)numberOfRowsInTableView:(NSTableView *)aTableView;
- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn*) aTableColumn row:(int)rowIndex;
- (void)tableView:(NSTableView*)aTableView setObjectValue:(id)anObject forTableColumn:(NSTableColumn*)aTableColumn row:(int)rowIndex;
@end
#endif VARIABLELIST_H