diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-05-15 17:57:31 -0500 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-05-15 17:57:31 -0500 |
| commit | e3b80115077e5c473df008fe2345420a547df1d2 (patch) | |
| tree | dc271ba1fb5a21dac529729ab911998fd5031b4a /src | |
| parent | eaa1dd1003b08c2608c101be109f5d62b7e35ab5 (diff) | |
Add some comments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film.cc | 3 | ||||
| -rw-r--r-- | src/lib/kdm.cc | 3 | ||||
| -rw-r--r-- | src/wx/kdm_dialog.h | 4 |
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; |
