#pragma once #include #include #include namespace got { // The path to the database std::string getDBpath(); // Returns {sheet, note} std::optional> getRunning(); // Returns names of sheets occurring in the database std::vector getSheets(); // Change the description of the currently running task to the given string void editRunning(const std::string &descr); // Check out of any current task void checkOut(); // Check into the given sheet void checkIn(const std::string &sheet); }