mirror of https://github.com/laurent22/joplin.git
25 lines
291 B
C++
Executable File
25 lines
291 B
C++
Executable File
#ifndef FOLDERCOLLECTION_H
|
|
#define FOLDERCOLLECTION_H
|
|
|
|
#include <stable.h>
|
|
#include "model/folder.h"
|
|
|
|
namespace jop {
|
|
|
|
class FolderCollection {
|
|
|
|
public:
|
|
|
|
FolderCollection();
|
|
void add(const Folder* folder);
|
|
|
|
private:
|
|
|
|
std::vector<Folder*> collection_;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // FOLDERCOLLECTION_H
|