📄 invalidmenuexception.h
字号:
#ifndef __INVALIDMENUEXCEPTION_H__#define __INVALIDMENUEXCEPTION_H__#include <exception>class QString;namespace gui {/** Exception raised when program encountered some error while loading menu or toolbar - in menu or toolbar item definitions \brief Exception raised when encountering invalid menu item*/class InvalidMenuException : public std::exception {public: InvalidMenuException(const QString &message); ~InvalidMenuException() throw(); QString message() const; const char* what() const throw();protected: /** exception message*/ QString msg;};} //namespace gui#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -