• R/O
  • HTTP
  • SSH
  • HTTPS

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

BathyScapheのSQLiteデータベース内を覗くアプリ


File Info

Rev. c5cbcdd0fa257327a0f792df0f709ecf2683297c
大小 452 字节
时间 2011-12-03 14:04:59
作者 masakih
Log Message

nibをxibに変更。

git-svn-id: svn+ssh://macmini/usr/local/svnrepos/BSDBViewer/BSDBViewer@18 477addb1-df5c-4826-a637-c2b1bdcd60d4

Content

#import <Cocoa/Cocoa.h>

@interface BSDBBoardSource : NSObject
{
    IBOutlet id delegate;
	
	BOOL excludeNotHasReadThread;
	
	NSArray *boards;
}
@property BOOL excludeNotHasReadThread;

- (id)boardIDAtRow:(unsigned int)row;
- (NSArray *)boardIDsInSet:(NSIndexSet *)set;

- (IBAction)update:(id)sender;

@end

@interface NSObject (BSDBBoardSourceDelegate)
- (void)beginUpdateBoardData:(id)dataSource;
- (void)finishUpdateBoardData:(id)dataSource;
@end