blob: 1dd074faa8fb006198a65bb8d4274ab627512173 [file] [log] [blame]
Ilya Moiseenkob4aca052013-10-06 15:10:19 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
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