mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-27 10:32:58 +02:00
22 lines
185 B
C++
Executable File
22 lines
185 B
C++
Executable File
#ifndef FOLDER_H
|
|
#define FOLDER_H
|
|
|
|
#include <stable.h>
|
|
#include "models/item.h"
|
|
|
|
namespace jop {
|
|
|
|
class Folder : public Item {
|
|
|
|
public:
|
|
|
|
Folder();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // FOLDER_H
|