Updated cs_CZ translation from Tomáš Begeni.
[dcpomatic.git] / src / lib / content_factory.h
index 2522ad01798c19f63b4fb52b6afc6f4d4733d582..2cef840340ffe10404e6b5c45d875da591c513bd 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>
+#include <vector>
+
 
 class Film;
 class Content;
 
-extern boost::shared_ptr<Content> content_factory (cxml::ConstNodePtr, int, std::list<std::string> &);
-extern std::list<boost::shared_ptr<Content> > content_factory (boost::filesystem::path);
+
+extern std::shared_ptr<Content> content_factory (cxml::ConstNodePtr, int, std::list<std::string> &);
+extern std::vector<std::shared_ptr<Content>> content_factory (boost::filesystem::path);