Do not install some private smart include files.

This commit is contained in:
Andrius Štikonas 2018-04-02 13:13:16 +01:00
parent 398e9c3df5
commit 0b6d91bbdb
8 changed files with 8 additions and 16 deletions

View File

@ -41,9 +41,6 @@ set(CORE_LIB_HDRS
core/partitiontable.h
core/smartattribute.h
core/smartstatus.h
core/smartparser.h
core/smartattributeparseddata.h
core/smartdiskinformation.h
core/volumemanagerdevice.h
)

View File

@ -48,8 +48,6 @@ public:
virtual qint64 firstByte() const = 0;
virtual qint64 lastByte() const = 0;
private:
};
#endif

View File

@ -15,15 +15,14 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#if !defined(KPMCORE_SMARTATTRIBUTE_H)
#ifndef KPMCORE_SMARTATTRIBUTE_H
#define KPMCORE_SMARTATTRIBUTE_H
#include "util/libpartitionmanagerexport.h"
#include "core/smartattributeparseddata.h"
#include <QString>
class SmartAttributeParsedData;
class LIBKPMCORE_EXPORT SmartAttribute
{
@ -104,4 +103,3 @@ private:
};
#endif

View File

@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#if !defined(KPMCORE_SMARTATTRIBUTEPARSEDDATA_H)
#ifndef KPMCORE_SMARTATTRIBUTEPARSEDDATA_H
#define KPMCORE_SMARTATTRIBUTEPARSEDDATA_H
#include <QJsonObject>

View File

@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#if !defined(KPMCORE_SMARTDISKINFORMATION_H)
#ifndef KPMCORE_SMARTDISKINFORMATION_H
#define KPMCORE_SMARTDISKINFORMATION_H
#include <QList>

View File

@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#if !defined(KPMCORE_SMARTPARSER_H)
#ifndef KPMCORE_SMARTPARSER_H
#define KPMCORE_SMARTPARSER_H
#include <QJsonDocument>

View File

@ -15,8 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#if !defined(KPMCORE_SMARTSTATUS_H)
#ifndef KPMCORE_SMARTSTATUS_H
#define KPMCORE_SMARTSTATUS_H
#include "util/libpartitionmanagerexport.h"

View File

@ -80,9 +80,9 @@ protected:
public:
/** string deviceNodes together into comma-sperated list
/** join deviceNodes together into comma-separated list
*
* @return comma-seperated list of deviceNodes
* @return comma-separated list of deviceNodes
*/
virtual QString prettyDeviceNodeList() const;