summaryrefslogtreecommitdiff
path: root/src/lib/log.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-02-17 17:33:35 +0100
committerCarl Hetherington <cth@carlh.net>2021-02-17 17:33:35 +0100
commit33e13c4053138930f4b2f59349e441c76111059d (patch)
tree4a4da8c31d0a78bc11539ae89a5d67602cdcb913 /src/lib/log.cc
parente573f4fa173608dcb7ca23f543b49d5be26a8226 (diff)
Assorted C++11 tidying.
Diffstat (limited to 'src/lib/log.cc')
-rw-r--r--src/lib/log.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/log.cc b/src/lib/log.cc
index f84cfd3a5..97b649893 100644
--- a/src/lib/log.cc
+++ b/src/lib/log.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -18,10 +18,12 @@
*/
+
/** @file src/log.cc
* @brief A very simple logging class.
*/
+
#include "log.h"
#include "cross.h"
#include "config.h"
@@ -39,11 +41,11 @@ using std::make_shared;
Log::Log ()
- : _types (0)
{
}
+
void
Log::log (shared_ptr<const LogEntry> e)
{
@@ -56,6 +58,7 @@ Log::log (shared_ptr<const LogEntry> e)
do_log (e);
}
+
/** @param n String to log */
void
Log::log (string message, int type)
@@ -71,6 +74,7 @@ Log::log (string message, int type)
do_log (e);
}
+
void
Log::dcp_log (dcp::NoteType type, string m)
{
@@ -87,6 +91,7 @@ Log::dcp_log (dcp::NoteType type, string m)
}
}
+
void
Log::set_types (int t)
{