MobileRT  1.0
A multi platform C++ CPU progressive Ray Tracer.
ErrorCode.hpp
Go to the documentation of this file.
1 #ifndef MOBILERT_ERRORCODE_HPP
2 #define MOBILERT_ERRORCODE_HPP
3 
4 #include <string>
5 
6 namespace MobileRT {
7 
11  struct ErrorType {
12  int code;
13  ::std::string codeText;
14  ::std::string description;
15  };
16 
23 }//namespace MobileRT
24 
25 #endif //MOBILERT_ERRORCODE_HPP
::std::string description
Definition: ErrorCode.hpp:14
::std::string codeText
Definition: ErrorCode.hpp:13
Definition: ErrorCode.hpp:11
ErrorType getErrorCode()
Definition: ErrorCode.cpp:83
int code
Definition: ErrorCode.hpp:12
Definition: AABB.cpp:105