Mercurial > hg > ccmieditor
view native/PhantomOmni/HapticException.h @ 8:ea7885bd9bff tip
fixed bug : render solid line as dotted/dashed when moving the stylus from dotted/dashed to solid
author | ccmi-guest |
---|---|
date | Thu, 03 Jul 2014 16:12:20 +0100 |
parents | 9e67171477bc |
children |
line wrap: on
line source
#pragma once #include <exception> using namespace std; /* This exception is thrown by the HapticManager if the initialization of the Haptic * doesn't succeed. */ class HapticException : public exception { public: HapticException(void); virtual ~HapticException(void); virtual const char* what() const throw(); };