19 #include <torquescript/filehandlebase.hpp>
30 virtual void logEcho(
const std::string& message);
36 virtual void logError(
const std::string& message);
48 virtual void logDebug(
const std::string& message);
56 virtual std::unique_ptr<FileHandleBase>
getFileHandle(
const std::string& path);
Definition: platformcontext.hpp:24
virtual void logWarning(const std::string &message)
Asks the interpreter to handle a warning log message.
virtual void logError(const std::string &message)
Asks the interpreter to handle an error log message.
virtual void logDebug(const std::string &message)
Asks the interpreter to handle a debug log message.
virtual void logEcho(const std::string &message)
Asks the interpreter to handle a simple echo message.
virtual std::unique_ptr< FileHandleBase > getFileHandle(const std::string &path)
Retrieves an abstract file handle to the file at the specified path. This allows for platform-depende...