kpmcore/src/core/volumemanagerdevice.cpp

37 lines
1.9 KiB
C++
Raw Permalink Normal View History

2016-06-08 16:50:40 +01:00
/*************************************************************************
* Copyright (C) 2016 by Chantara Tith <tith.chantara@gmail.com> *
2016-06-08 16:50:40 +01:00
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#include "core/volumemanagerdevice.h"
2016-08-15 07:18:40 +01:00
/** Constructs an abstract Volume Manager Device with an empty PartitionTable.
*
2016-06-08 16:50:40 +01:00
*/
VolumeManagerDevice::VolumeManagerDevice(const QString& name,
const QString& deviceNode,
const qint64 logicalSize,
2016-06-08 16:50:40 +01:00
const qint64 totalLogical,
const QString& iconName,
2016-06-08 16:50:40 +01:00
Device::Type type)
: Device(name, deviceNode, logicalSize, totalLogical, iconName, type)
2016-06-08 16:50:40 +01:00
{
}
2016-06-12 14:09:46 +01:00
QString VolumeManagerDevice::prettyDeviceNodeList() const
{
return deviceNodes().join(QStringLiteral(", "));
2016-06-12 14:09:46 +01:00
}