Euphoria
log.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "log/log.h"
4 
5 
6 namespace eu::window
7 {
8 
10 {
11  void info(const std::string& str) override;
12  void warn(const std::string& str) override;
13  void error(const std::string& str) override;
14 };
15 
16 }
void error(const std::string &str) override
Definition: log.cc:39
void info(const std::string &str) override
Definition: log.cc:29
void warn(const std::string &str) override
Definition: log.cc:34