An event loop
This commit is contained in:
parent
ce29081a5f
commit
69e8098cce
10 changed files with 295 additions and 11 deletions
|
@ -27,3 +27,7 @@ void Shared::Loggable::warn(const std::string& message) const {
|
|||
void Shared::Loggable::error(const std::string& message) const {
|
||||
logger.log(Logger::error, message, domain);
|
||||
}
|
||||
|
||||
void Shared::Loggable::fatal(const std::string& message) const {
|
||||
logger.log(Logger::fatal, message, domain);
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@ protected:
|
|||
void info(const std::string& message) const;
|
||||
void warn(const std::string& message) const;
|
||||
void error(const std::string& message) const;
|
||||
void fatal(const std::string& message) const;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue