summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/film.cc3
-rw-r--r--src/lib/kdm.cc3
-rw-r--r--src/wx/kdm_dialog.h4
3 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 09d939957..12a57753f 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -973,6 +973,9 @@ Film::frame_size () const
return fit_ratio_within (container()->ratio(), full_frame ());
}
+/** @param from KDM from time in local time.
+ * @param to KDM to time in local time.
+ */
libdcp::KDM
Film::make_kdm (
shared_ptr<libdcp::Certificate> target,
diff --git a/src/lib/kdm.cc b/src/lib/kdm.cc
index cf551285b..2a8e191e7 100644
--- a/src/lib/kdm.cc
+++ b/src/lib/kdm.cc
@@ -164,6 +164,9 @@ make_cinema_kdms (
return cinema_kdms;
}
+/** @param from KDM from time in local time.
+ * @param to KDM to time in local time.
+ */
void
write_kdm_files (
shared_ptr<const Film> film,
diff --git a/src/wx/kdm_dialog.h b/src/wx/kdm_dialog.h
index 90354a2d1..db51d6d03 100644
--- a/src/wx/kdm_dialog.h
+++ b/src/wx/kdm_dialog.h
@@ -39,8 +39,12 @@ public:
KDMDialog (wxWindow *, boost::shared_ptr<const Film>);
std::list<boost::shared_ptr<Screen> > screens () const;
+
+ /** @return KDM from time in local time */
boost::posix_time::ptime from () const;
+ /** @return KDM until time in local time */
boost::posix_time::ptime until () const;
+
boost::filesystem::path dcp () const;
boost::filesystem::path directory () const;
bool write_to () const;