X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fdcp_reader.h;h=8f49dfd6e6d18d6f5e1db5170afdb6ffadeef879;hb=cdc42954f45d216adb749651a026b3da0b932afa;hp=82a211c0ba53f4c06d20505343a5d4e14e456266;hpb=5877be91301e5dd54ca125c0acd7bfb1ecc3dcd6;p=libsub.git diff --git a/src/dcp_reader.h b/src/dcp_reader.h index 82a211c..8f49dfd 100644 --- a/src/dcp_reader.h +++ b/src/dcp_reader.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2015 Carl Hetherington + Copyright (C) 2014-2017 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,41 +21,17 @@ #define LIBSUB_DCP_READER_H #include "reader.h" -#include -#include #include namespace sub { -namespace dcp { - class Font; - class Text; - class Subtitle; -} - /** @class DCPReader * @brief A class which reads DCP subtitles. */ class DCPReader : public Reader { -protected: - - struct ParseState { - std::list > font_nodes; - std::list > text_nodes; - std::list > subtitle_nodes; - }; - - void parse_common (cxml::NodePtr root, boost::optional tcr); - - std::string _id; - -private: - void parse_node (xmlpp::Node const * node, ParseState& parse_state, boost::optional tcr); - void maybe_add_subtitle (std::string text, ParseState const & parse_state); - - std::string _reel_number; - std::string _language; +public: + DCPReader (boost::filesystem::path file); }; }