12 lines
226 B
C
12 lines
226 B
C
|
#ifndef __DATABASE_H__
|
||
|
#define __DATABASE_H__
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class Database {
|
||
|
public:
|
||
|
bool open(const std::string &path);
|
||
|
void addTask(uint64_t createTime, const std::string &content);
|
||
|
};
|
||
|
|
||
|
#endif // __DATABASE_H__
|