Improved comments.
[libdcp.git] / src / combine.h
index 3d8a6284f3b4e290e4d83c80317b3798cbd0ce89..b23b21beaf61f8aa8250efe071c02475c32b7e10 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
 */
 
 
+/** @file  src/combine.h
+ *  @brief Method to combine DCPs
+ */
+
+
 #include "compose.hpp"
 #include "version.h"
 #include <boost/filesystem.hpp>
 
 namespace dcp {
 
+
 class CertificateChain;
 
+
 void combine (
        std::vector<boost::filesystem::path> inputs,
        boost::filesystem::path output,
@@ -48,8 +55,9 @@ void combine (
        std::string creator = String::compose("libdcp %1", dcp::version),
        std::string issue_date = LocalTime().as_string(),
        std::string annotation_text = String::compose("Created by libdcp %1", dcp::version),
-       boost::shared_ptr<const CertificateChain> signer = boost::shared_ptr<CertificateChain>()
+       std::shared_ptr<const CertificateChain> signer = std::shared_ptr<CertificateChain>()
        );
 
+
 }