Warning, file /system/kjournald/lib/localjournal_p.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-License-Identifier: LGPL-2.1-or-later OR MIT 0003 SPDX-FileCopyrightText: 2021 Andreas Cord-Landwehr <cordlandwehr@kde.org> 0004 */ 0005 0006 #ifndef LOCALJOURNAL_PRIVATE_H 0007 #define LOCALJOURNAL_PRIVATE_H 0008 0009 #include "memory.h" 0010 #include <QSocketNotifier> 0011 #include <QtGlobal> 0012 #include <systemd/sd-journal.h> 0013 0014 class LocalJournalPrivate 0015 { 0016 public: 0017 LocalJournalPrivate(); 0018 mutable std::unique_ptr<sd_journal> mJournal; 0019 qintptr mFd{0}; 0020 QString mCurrentBootId; 0021 std::unique_ptr<QSocketNotifier> mJournalSocketNotifier; 0022 }; 0023 0024 #endif // LOCALJOURNAL_H