1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-20 11:28:40 +02:00

28 lines
312 B
C
Raw Normal View History

2016-12-10 22:39:53 +00:00
#ifndef FOLDER_H
#define FOLDER_H
#include <stable.h>
#include "models/item.h"
namespace jop {
class Folder : public Item {
public:
Folder();
2017-01-01 23:20:06 +01:00
bool isNew() const;
bool save();
bool dispose();
2016-12-10 22:39:53 +00:00
2017-01-01 23:20:06 +01:00
static int count();
static QVector<Folder> all(const QString& orderBy);
2017-01-01 23:03:42 +01:00
2016-12-10 22:39:53 +00:00
private:
};
}
#endif // FOLDER_H