fw4spl
Log.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2016.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #include "fwLog/Log.hpp"
8 
9 namespace fwLog
10 {
11 
12 Log::Log(LevelType level, const std::string& message) : m_level(level), m_message(message)
13 {
14 }
15 
16 //-----------------------------------------------------------------------------
17 
19 {
20 }
21 
22 //-----------------------------------------------------------------------------
23 
24 } //namespace fwLog
25 
26 
fwLog contains classes used to manage logs.
Definition: Log.hpp:16
FWLOG_API Log(LevelType level, const std::string &message)
Constructor.
Definition: Log.cpp:12
FWLOG_API ~Log()
Destructor.
Definition: Log.cpp:18