MobileRT  1.0
A multi platform C++ CPU progressive Ray Tracer.
Utils_dependent.hpp
Go to the documentation of this file.
1 #ifndef UTILS_DEPENDENT_HPP
2 #define UTILS_DEPENDENT_HPP
3 
4 #include <iostream>
5 
6 namespace Dependent {
7  void printDebug(const ::std::string &log);
8 
9  void printInfo(const ::std::string &log);
10 
11  void printWarn(const ::std::string &log);
12 
13  void printError(const ::std::string &log);
14 }//namespace Dependent
15 
16 #endif //UTILS_DEPENDENT_HPP
Definition: Utils_dependent.hpp:7
void printWarn(const ::std::string &log)
Definition: Utils_dependent.hpp:25
void printInfo(const ::std::string &log)
Definition: Utils_dependent.hpp:21
void printDebug(const ::std::string &log)
Definition: Utils_dependent.hpp:17
void printError(const ::std::string &log)
Definition: Utils_dependent.hpp:29