X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Flog_entry.h;h=50bbf63a09d9516761c9e272d3ea958e4ddcd230;hb=372555641062f5c7c6e4a1d5f67cfaf12a2c6799;hp=29c7090857b0a096e4865fee4ac6c0d36e6f3788;hpb=aeb835a18c8df347e0ed68fb24631b320abeb611;p=dcpomatic.git diff --git a/src/lib/log_entry.h b/src/lib/log_entry.h index 29c709085..50bbf63a0 100644 --- a/src/lib/log_entry.h +++ b/src/lib/log_entry.h @@ -1,25 +1,27 @@ /* Copyright (C) 2015 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ #ifndef DCPOMATIC_LOG_ENTRY_H #define DCPOMATIC_LOG_ENTRY_H +#include #include class LogEntry @@ -32,8 +34,11 @@ public: static const int TYPE_DEBUG_DECODE; static const int TYPE_DEBUG_ENCODE; static const int TYPE_TIMING; + static const int TYPE_DEBUG_EMAIL; + static const int TYPE_DEBUG_PLAYER; - LogEntry (int type); + explicit LogEntry (int type); + virtual ~LogEntry () {} virtual std::string message () const = 0;