📄 exception.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -