• 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

修訂. c5cbcdd0fa257327a0f792df0f709ecf2683297c
大小 482 bytes
時間 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 BSDBThreadSource : NSObject
{
    IBOutlet id delegate;
	
	NSArray *threads;
	NSNumber *boardID;
}

@property (retain) NSArray *threads;
@property (retain) NSNumber *boardID;

- (id)threadIDAtRow:(unsigned int)row;
- (NSArray *)threadIDsInSet:(NSIndexSet *)set;

- (IBAction)update:(id)sender;

@end

@interface NSObject (BSDBThreadSourceDelegate)
- (void)beginUpdateThreadData:(id)dataSource;
- (void)finishUpdateThreadData:(id)dataSource;
@end