swift
reverselookup.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2019 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_MISC_SIMULATION_REVERSELOOKUP_H
7 #define SWIFT_MISC_SIMULATION_REVERSELOOKUP_H
8 
9 #include <QDBusArgument>
10 #include <QMetaType>
11 
12 namespace swift::misc::simulation
13 {
16  {
17  RevLogDisabled = 0,
18  RevLogEnabled = 1 << 0,
19  RevLogSimplifiedInfo = 1 << 1,
20  RevLogEnabledSimplified = RevLogEnabled | RevLogSimplifiedInfo
21  };
22  Q_DECLARE_FLAGS(ReverseLookupLogging, ReverseLookupLoggingFlag)
23 } // namespace swift::misc::simulation
24 
25 Q_DECLARE_METATYPE(swift::misc::simulation::ReverseLookupLogging)
27 Q_DECLARE_OPERATORS_FOR_FLAGS(swift::misc::simulation::ReverseLookupLogging)
28 
29 #endif // SWIFT_MISC_SIMULATION_REVERSELOOKUP_H
ReverseLookupLoggingFlag
Lookup log.messages.
Definition: reverselookup.h:16