#include "storage.h" #include "config.h" #include Storage::Storage(const Config& config): m_config(config) { SQLite::Database db(m_config.getDataPath() + "/whiteboard.db3", SQLite::OPEN_READWRITE|SQLite::OPEN_CREATE); db.exec("CREATE TABLE IF NOT EXISTS documents (id INTEGER PRIMARY KEY, value TEXT)"); } std::string Storage::getDocument() { return ""; }