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

0001 /*
0002     SPDX-FileCopyrightText: 2006-2007 Kevin Ottens <ervin@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef SOLID_BLOCK_P_H
0008 #define SOLID_BLOCK_P_H
0009 
0010 #include "deviceinterface_p.h"
0011 
0012 namespace Solid
0013 {
0014 class BlockPrivate : public DeviceInterfacePrivate
0015 {
0016 public:
0017     BlockPrivate()
0018         : DeviceInterfacePrivate()
0019     {
0020     }
0021 };
0022 }
0023 
0024 #endif