File indexing completed on 2024-05-12 04:01:52

0001 /*
0002     SPDX-FileCopyrightText: 2007 Kevin Ottens <ervin@kde.org>
0003     SPDX-FileCopyrightText: 2011 Lukas Tinkl <ltinkl@redhat.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 
0008 #ifndef SOLID_SOLIDNAMESPACE_H
0009 #define SOLID_SOLIDNAMESPACE_H
0010 
0011 namespace Solid
0012 {
0013 enum ErrorType {
0014     NoError = 0,
0015     UnauthorizedOperation,
0016     DeviceBusy,
0017     OperationFailed,
0018     UserCanceled,
0019     InvalidOption,
0020     MissingDriver,
0021 };
0022 }
0023 
0024 #include <QMetaType>
0025 
0026 Q_DECLARE_METATYPE(Solid::ErrorType)
0027 
0028 #endif