X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fplain_text_content.h;fp=src%2Flib%2Fplain_text_content.h;h=7a7ef66ea925ea1bcdb3f9b13bfe9989fa5a42e7;hb=c1f98c84cdf3829b31929453b8a89fdcbdcd0c42;hp=0000000000000000000000000000000000000000;hpb=65cc06076b46cbd27ccfcf7387894358e2c8ab1e;p=dcpomatic.git diff --git a/src/lib/plain_text_content.h b/src/lib/plain_text_content.h new file mode 100644 index 000000000..7a7ef66ea --- /dev/null +++ b/src/lib/plain_text_content.h @@ -0,0 +1,46 @@ +/* + Copyright (C) 2014-2016 Carl Hetherington + + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + DCP-o-matic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with DCP-o-matic. If not, see . + +*/ + +#include "content.h" + +class Job; + +/** @class PlainText + * @brief SubRip or SSA subtitles. + */ +class PlainText : public Content +{ +public: + PlainText (boost::shared_ptr, boost::filesystem::path); + PlainText (boost::shared_ptr, cxml::ConstNodePtr, int); + + boost::shared_ptr shared_from_this () { + return boost::dynamic_pointer_cast<PlainText> (Content::shared_from_this ()); + } + + void examine (boost::shared_ptr<Job>); + std::string summary () const; + std::string technical_summary () const; + void as_xml (xmlpp::Node *, bool with_paths) const; + DCPTime full_length () const; + +private: + ContentTime _length; +};