ed
logging.h
Go to the documentation of this file.
1 #ifndef ED_LOGGING_H_
2 #define ED_LOGGING_H_
3 
4 #include <ostream>
5 #include <string>
6 
7 namespace ed
8 {
9 
10 namespace log
11 {
12 
14 
15 void info(const char* str);
16 
17 void info(const std::string& str);
18 
20 
21 void warning(const char* str);
22 
23 void warning(const std::string& str);
24 
26 
27 void error(const char* str);
28 
29 void error(const std::string& str);
30 
31 }
32 
33 }
34 
35 #endif
std::string
ed::log::info
std::ostream & info()
Definition: logging.cpp:30
ed::log::error
std::ostream & error()
Definition: logging.cpp:74
std::ostream
ed::log::warning
std::ostream & warning()
Definition: logging.cpp:52
ed
Definition: convex_hull.h:8
ostream
string