#include <rGLEW.h>
Public Member Functions | |
rExceptionGLEW (char const *description) | |
Private Member Functions | |
virtual tString | DoGetName () const |
returns the name of the exception | |
virtual tString | DoGetDescription () const |
returns a detailed description | |
Private Attributes | |
tString | description_ |
Definition at line 24 of file rGLEW.h.
rExceptionGLEW::rExceptionGLEW | ( | char const * | description | ) | [inline] |
virtual tString rExceptionGLEW::DoGetName | ( | void | ) | const [inline, private, virtual] |
returns the name of the exception
Implements tException.
Definition at line 32 of file rGLEW.h.
00032 { return tString("GLEW Exception"); }
virtual tString rExceptionGLEW::DoGetDescription | ( | void | ) | const [inline, private, virtual] |
returns a detailed description
Reimplemented from tException.
Definition at line 34 of file rGLEW.h.
References description_.
00034 { return description_; }
tString rExceptionGLEW::description_ [private] |