mistserver/src/controller/controller_storage.h
2014-01-13 15:24:27 +01:00

14 lines
314 B
C++

#include <string>
#include <mist/json.h>
namespace Controller {
extern JSON::Value Storage; ///< Global storage of data.
/// Store and print a log message.
void Log(std::string kind, std::string message);
/// Write contents to Filename.
bool WriteFile(std::string Filename, std::string contents);
}