aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/video/video_subtitle.h
diff options
context:
space:
mode:
authorTobia Tesan2014-10-15 20:49:59 +0200
committerTobia Tesan2014-10-15 21:36:45 +0200
commit2eee488e364460772dcb8a85962f6c210810587b (patch)
tree03b4d992de054b51ff17f80701b186f9c099f047 /engines/wintermute/video/video_subtitle.h
parentf2441da3da9ce4802ce12dc5c815095098e57ee2 (diff)
downloadscummvm-rg350-2eee488e364460772dcb8a85962f6c210810587b.tar.gz
scummvm-rg350-2eee488e364460772dcb8a85962f6c210810587b.tar.bz2
scummvm-rg350-2eee488e364460772dcb8a85962f6c210810587b.zip
WINTERMUTE: Do some refactoring over a bunch of attrs in VideoSubtitle
Conflicts: engines/wintermute/video/video_subtitler.cpp
Diffstat (limited to 'engines/wintermute/video/video_subtitle.h')
-rw-r--r--engines/wintermute/video/video_subtitle.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/engines/wintermute/video/video_subtitle.h b/engines/wintermute/video/video_subtitle.h
index 6d629b34d0..5df1348465 100644
--- a/engines/wintermute/video/video_subtitle.h
+++ b/engines/wintermute/video/video_subtitle.h
@@ -35,12 +35,15 @@ namespace Wintermute {
class VideoSubtitle : public BaseClass {
public:
+ VideoSubtitle(BaseGame *inGame);
+ VideoSubtitle(BaseGame *inGame, char *text, const long &startFrame, const long &endFrame);
+ long getEndFrame();
+ long getStartFrame();
+ Common::String getText();
+private:
long _endFrame;
long _startFrame;
- char *_text;
- VideoSubtitle(BaseGame *inGame);
- VideoSubtitle(BaseGame *inGame, char *text, long startFrame, long endFrame);
- virtual ~VideoSubtitle();
+ Common::String _text;
};
}