first commit
This commit is contained in:
26
list.h
Normal file
26
list.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef LIST_H
|
||||
#define LIST_H
|
||||
|
||||
#include <QUuid>
|
||||
#include <QString>
|
||||
|
||||
class List
|
||||
{
|
||||
private:
|
||||
QUuid uuid;
|
||||
QString name;
|
||||
|
||||
public:
|
||||
List() {}
|
||||
List(QUuid uuid, QString name);
|
||||
List(QString name);
|
||||
|
||||
QUuid getUUID();
|
||||
QString getName();
|
||||
|
||||
void setName(QString value);
|
||||
List duplicate();
|
||||
|
||||
};
|
||||
|
||||
#endif // LIST_H
|
||||
Reference in New Issue
Block a user