QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
677 B

/*
SPDX-FileCopyrightText: 2016 Eike Hein <[email protected]>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#pragma once
#include "abstracttasksmodel.h"
namespace TaskManager
{
class TASKMANAGER_EXPORT XStartupTasksModel : public AbstractTasksModel
{
Q_OBJECT
public:
explicit XStartupTasksModel(QObject *parent = nullptr);
~XStartupTasksModel() override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace TaskManager