diff options
Diffstat (limited to 'xbmc/events/EventLogManager.h')
-rw-r--r-- | xbmc/events/EventLogManager.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/xbmc/events/EventLogManager.h b/xbmc/events/EventLogManager.h new file mode 100644 index 0000000..033dbc0 --- /dev/null +++ b/xbmc/events/EventLogManager.h @@ -0,0 +1,26 @@ +/* + * Copyright (C) 2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#pragma once + +#include "threads/CriticalSection.h" + +#include <map> +#include <memory> + +class CEventLog; + +class CEventLogManager +{ +public: + CEventLog &GetEventLog(unsigned int profileId); + +private: + std::map<unsigned int, std::unique_ptr<CEventLog>> m_eventLogs; + CCriticalSection m_eventMutex; +}; |