From 38a5ff713757b9dc0cb67cb09613182c46dc9657 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 30 May 2014 10:53:53 +0100 Subject: Split up into RawSubtitle and Subtitle, with collect(). Hopefully cleaner. --- src/reader.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/reader.h') 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 #include #include @@ -30,7 +30,7 @@ namespace sub { class Reader { public: - std::list subtitles () const { + std::list subtitles () const { return _subs; } @@ -41,7 +41,7 @@ public: protected: void warn (std::string) const; - std::list _subs; + std::list _subs; }; } -- cgit v1.2.3