OOCaption.h
1 
9 #import <Foundation/Foundation.h>
10 #import "OOTBXML.h"
11 
15 @interface OOCaption : NSObject {
16 @protected
17  Float64 begin;
18  Float64 end;
19  NSString *text;
20 }
21 
23 @property(readonly, nonatomic) Float64 begin;
25 @property(readonly, nonatomic) Float64 end;
27 @property(readonly, nonatomic, strong) NSString *text;
28 
29 -(id)initWithBegin:(Float64)begin_ end:(Float64)end_ text:(NSString*)text_;
30 
36 - (id)initWithXML:(OOTBXMLElement *)xml;
37 
38 @end
Definition: OOTBXML.h:54
Float64 end
Time when the text should disappear.
Definition: OOCaption.h:18
NSString * text
Text string to appear.
Definition: OOCaption.h:19
Float64 begin
Time when the text should appear.
Definition: OOCaption.h:17
Single timed text item.
Definition: OOCaption.h:15