• R/O
  • HTTP
  • SSH
  • HTTPS

Frequently used words (click to add to your profile)

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

iSightを使ってBooklog,MediaMarkerインポート用CSVファイルを生成するアプリ


File Info

Rev. deec2c46d1e4b89d37ea473242737695cab87712
Größe 611 Bytes
Zeit 2012-03-25 16:55:28
Autor masakih
Log Message

[Mod] PPCサポートをやめた

Content

//
//  BEExporterAttribute.h
//  BooksExporter
//
//  Created by Hori,Masaki on 11/03/27.
//  Copyright 2011 masakih. All rights reserved.
//

#import <Cocoa/Cocoa.h>
#import "BERegisterSite.h"
#import "BEBooksExporter.h"


@interface BEExporterAttribute : NSObject <NSCoding>
{
	ExporterType type;
	BOOL isOpenAfterExport;
	BERegisterSite *site;
}

@property (readonly) ExporterType type;
@property BOOL isOpenAfterExport;
@property (nonatomic, retain) BERegisterSite *site;

@property (readonly) NSString *name;


+ (NSArray *)attributes;
+ (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue;

@end