X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fstdout_log.cc;h=50278906fb3f055427d31236c449d7bc929a9fcb;hb=60b80e1051c8c20ebce4b757d3fb67491dfdb79d;hp=ba45787701e0dce0e0bb09b35f3b106aee2c8214;hpb=463496994d770577ff1e1ea6e7b1e4addb4252b2;p=dcpomatic.git diff --git a/src/lib/stdout_log.cc b/src/lib/stdout_log.cc index ba4578770..50278906f 100644 --- a/src/lib/stdout_log.cc +++ b/src/lib/stdout_log.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2020 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,24 +18,29 @@ */ + #include "stdout_log.h" #include "config.h" #include + using std::cout; using std::string; -using boost::shared_ptr; +using std::shared_ptr; + StdoutLog::StdoutLog () { set_types (Config::instance()->log_types()); } + StdoutLog::StdoutLog (int types) { set_types (types); } + void StdoutLog::do_log (shared_ptr entry) {