• R/O
  • HTTP
  • SSH
  • HTTPS

Frequently used words (click to add to your profile)

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

あれとこれのコンバータ


File Info

Rev. 8ece8bbf421226ddce3c4f26df1acff3c279292f
Size 489 bytes
Time 2011-12-03 17:21:11
Author masakih
Log Message

Treat source code

ソースコードの整理。

Content

//
//  DatabaseUpdater.h
//  BathyScaphe
//
//  Created by Hori,Masaki on 07/02/03.
//  Copyright 2007 BathyScaphe Project. All rights reserved.
//

#import <Cocoa/Cocoa.h>

#import "DatabaseManager.h"

@interface DatabaseUpdater : NSObject
{
	IBOutlet NSWindow *window;
	IBOutlet NSProgressIndicator *progress;
	IBOutlet NSTextField *information;
}

+ (BOOL)updateFrom:(NSInteger)fromVersion to:(NSInteger)toVersion;

@end

@interface DatabaseUpdater(UpdateMethod)
- (BOOL) updateDB;
@end