Add some comments.
authorCarl Hetherington <cth@carlh.net>
Thu, 15 May 2014 22:57:31 +0000 (17:57 -0500)
committerCarl Hetherington <cth@carlh.net>
Thu, 15 May 2014 22:57:31 +0000 (17:57 -0500)
src/lib/film.cc
src/lib/kdm.cc
src/wx/kdm_dialog.h

index 09d939957d26b5d42b0804c8acd0ef10cec38d04..12a57753f4aa5a03806cbc20ce3cad2f14080754 100644 (file)
@@ -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,
index cf551285bb5444a476bd5b5f319b3ac556f056fd..2a8e191e7e24719f3031e5c75ffb0e539a805c4b 100644 (file)
@@ -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,
index 90354a2d1310dfc2e7f50138ab34f7bc4aea3336..db51d6d0380baf0dba4c8f510d5625396cac0c46 100644 (file)
@@ -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;