#ifndef __DATABASE_H__ #define __DATABASE_H__ #include class Database { public: bool open(const std::string &path); void addTask(uint64_t createTime, const std::string &content); }; #endif // __DATABASE_H__