khanat-opennel-code/code/ryzom/tools/client/ryzom_installer/src/profilesmodel.h

27 lines
611 B
C
Raw Normal View History

2016-03-05 11:35:32 +00:00
#ifndef PROFILESMODEL_H
#define PROFILESMODEL_H
#include "configfile.h"
class CProfilesModel : public QAbstractListModel
{
public:
CProfilesModel(QObject *parent);
CProfilesModel(const CProfiles &profiles, QObject *parent);
virtual ~CProfilesModel();
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
bool removeRows(int row, int count, const QModelIndex & parent = QModelIndex());
CProfiles& getProfiles() { return m_profiles; }
bool save() const;
private:
CProfiles m_profiles;
};
#endif