X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Flog_entry.h;h=95c4e4f1f851e31a57230722a1239ce62b1838a8;hb=f4fda1d705adfca0b7c8d3748c0c9df8e9da51bc;hp=4bace41a43b88a94c978bd066dd3e592ff9fcc75;hpb=591ccb82d75070d7cba55995bab23513741ff5cf;p=dcpomatic.git diff --git a/src/lib/log_entry.h b/src/lib/log_entry.h index 4bace41a4..95c4e4f1f 100644 --- a/src/lib/log_entry.h +++ b/src/lib/log_entry.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2015-2020 Carl Hetherington + Copyright (C) 2015-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,12 +18,15 @@ */ + #ifndef DCPOMATIC_LOG_ENTRY_H #define DCPOMATIC_LOG_ENTRY_H + #include #include + class LogEntry { public: @@ -31,13 +34,14 @@ public: static const int TYPE_GENERAL; static const int TYPE_WARNING; static const int TYPE_ERROR; - static const int TYPE_DEBUG_THREED; + static const int TYPE_DEBUG_THREE_D; static const int TYPE_DEBUG_ENCODE; static const int TYPE_TIMING; static const int TYPE_DEBUG_EMAIL; static const int TYPE_DEBUG_VIDEO_VIEW; ///< real-time video viewing (i.e. "playback") static const int TYPE_DISK; static const int TYPE_DEBUG_PLAYER; ///< the Player class + static const int TYPE_DEBUG_AUDIO_ANALYSIS; ///< audio analysis job explicit LogEntry (int type); virtual ~LogEntry () {} @@ -55,4 +59,5 @@ private: int _type; }; + #endif