Cleanup variable name: k -> reel
[dcpomatic.git] / src / lib / content_factory.h
index b319febfcbec5cc301a835b69d2a54b8a173d660..7da5435d5f531c2ff4ebba39615c25c167a13ad2 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 /** @file  src/lib/content_factory.h
  *  @brief Methods to create content objects.
  */
 
+
 #include <libcxml/cxml.h>
-#include <boost/shared_ptr.hpp>
+
 
 class Film;
 class Content;
 
-extern boost::shared_ptr<Content> content_factory (boost::shared_ptr<const Film>, cxml::NodePtr, int, std::list<std::string> &);
-extern boost::shared_ptr<Content> content_factory (boost::shared_ptr<const Film>, boost::filesystem::path);
+
+extern std::shared_ptr<Content> content_factory (cxml::ConstNodePtr, int, std::list<std::string> &);
+extern std::list<std::shared_ptr<Content>> content_factory (boost::filesystem::path);