From 464801a7b386f93be65cdfc60c3807cb5365467e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 27 Sep 2018 15:13:15 +0100 Subject: Basic SPL support. --- src/lib/spl_entry.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/lib/spl_entry.h (limited to 'src/lib/spl_entry.h') diff --git a/src/lib/spl_entry.h b/src/lib/spl_entry.h new file mode 100644 index 000000000..b7fdaa2e0 --- /dev/null +++ b/src/lib/spl_entry.h @@ -0,0 +1,31 @@ +/* + Copyright (C) 2018 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 . + +*/ + +class SPLEntry +{ +public: + SPLEntry (boost::filesystem::path p) + : dcp (p) + {} + + /* Length of black before this DCP */ + DCPTime black_before; + boost::filesystem::path dcp; +}; -- cgit v1.2.3