Files
OpenSceneGraph/src/osgPlugins/ac/Exception.h
Robert Osfield f5cf560fe1 Renamed the follow plugins to facilitate CMake build
lib3ds -> 3ds
ac3d -> ac
directx -> x
ESRIShape -> shp
2007-03-11 13:23:06 +00:00

20 lines
253 B
C++

#ifndef AC3D_EXCEPTION
#define AC3D_EXCEPTION 1
#include <string>
namespace ac3d{
class Exception{
public:
Exception(std::string error);
~Exception();
std::string getError(){return _error;};
private:
std::string _error;
};
}
#endif