diff options
Diffstat (limited to 'src/reader.h')
| -rw-r--r-- | src/reader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reader.h b/src/reader.h index 8aa9fd8..1237bb5 100644 --- a/src/reader.h +++ b/src/reader.h @@ -20,7 +20,7 @@ #ifndef LIBSUB_READER_H #define LIBSUB_READER_H -#include "subtitle.h" +#include "raw_subtitle.h" #include <list> #include <map> #include <string> @@ -30,7 +30,7 @@ namespace sub { class Reader { public: - std::list<Subtitle> subtitles () const { + std::list<RawSubtitle> subtitles () const { return _subs; } @@ -41,7 +41,7 @@ public: protected: void warn (std::string) const; - std::list<Subtitle> _subs; + std::list<RawSubtitle> _subs; }; } |
