OpenGL Volumizer 2.2 Reference Pages


NAME
vzErrorSeverity - Error severity used to log errors.

HEADER FILE
#include <Volumizer2/Error.h>

CLASS DESCRIPTION
Enumerated type representing the severity of an error that might occur. This is used by the vzError class.
enum vzErrorSeverity {          
    VZ_ERROR = 0,          // serious error, probably can't continue
    VZ_WARNING = 1         // warning, probably OK to continue
};

SEE ALSO
vzError

Back to Index