exception.h

来自「最新osg包」· C头文件 代码 · 共 20 行

H
20
字号
#ifndef IVE_EXCEPTION#define IVE_EXCEPTION 1#include <string>namespace ive{class Exception{public:	Exception(std::string error);	~Exception();	std::string getError(){return _error;};private:	std::string _error;};}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?