Solid

fakeblock.cpp
1/*
2 SPDX-FileCopyrightText: 2006 Davide Bettio <davide.bettio@kdemail.net>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#include "fakeblock.h"
8#include <QVariant>
9
10using namespace Solid::Backends::Fake;
11
12FakeBlock::FakeBlock(FakeDevice *device)
13 : FakeDeviceInterface(device)
14{
15}
16
17FakeBlock::~FakeBlock()
18{
19}
20
21int FakeBlock::deviceMajor() const
22{
23 return fakeDevice()->property("major").toInt();
24}
25
26int FakeBlock::deviceMinor() const
27{
28 return fakeDevice()->property("minor").toInt();
29}
30
31QString FakeBlock::device() const
32{
33 return fakeDevice()->property("device").toString();
34}
35
36#include "moc_fakeblock.cpp"
int toInt(bool *ok) const const
QString toString() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:12 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.