diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-07 22:15:01 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-07 22:15:01 +0200 |
| commit | 7bc2134d658778e04f1756c255e604b4ab5a5831 (patch) | |
| tree | b5ba51f2534604a6528fbbb130fd0cfca7d6fb70 /src/lib/content_factory.h | |
| parent | a771a806291243760552988a1a7a5742bc007ee2 (diff) | |
Assorted C++11/formatting cleanups.
Diffstat (limited to 'src/lib/content_factory.h')
| -rw-r--r-- | src/lib/content_factory.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/content_factory.h b/src/lib/content_factory.h index ab76a29dc..7da5435d5 100644 --- a/src/lib/content_factory.h +++ b/src/lib/content_factory.h @@ -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. @@ -18,14 +18,18 @@ */ + /** @file src/lib/content_factory.h * @brief Methods to create content objects. */ + #include <libcxml/cxml.h> + class Film; class Content; + 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); +extern std::list<std::shared_ptr<Content>> content_factory (boost::filesystem::path); |
