blob: 65d60f7360a52a70986498eaabfb40498d12a8e8 [file] [log] [blame]
Alexander Afanasyev14b09482013-10-11 18:24:45 +02001/* -*- Mode: objc; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
Ilya Moiseenkob4aca052013-10-06 15:10:19 -07002/*
3 * @copyright See LICENCE for copyright and license information.
4 *
5 * @author Alexander Afanasyev <alexander.afanasyev@ucla.edu>
6 * @author Ilya Moiseenko <iliamo@ucla.edu>
7 */
8
9#import <Cocoa/Cocoa.h>
10
11@interface FibTableController : NSObject <NSTableViewDataSource, NSXMLParserDelegate>
12{
13 NSXMLDocument *m_document;
14}
15
16@property NSTableView *m_tableView;
17
18- (void)loadStatus:(NSXMLDocument *)document;
19- (NSString *)getFaceByRowIndex:(NSInteger)index;
20- (NSString *)getPrefixByRowIndex:(NSInteger)index;
21
22@end