?? databaseexception.hpp
字號:
#ifndef _DATABASE_EXCEPTION_HPP#define _DATABASE_EXCEPTION_HPP#include "svnqt/exception.hpp"namespace svn{namespace cache{class SVNQT_EXPORT DatabaseException:public svn::Exception{ private: DatabaseException()throw(); int m_number; public: DatabaseException(const QString&msg)throw() : Exception(msg),m_number(-1) {} DatabaseException(const DatabaseException&src)throw() : Exception(src.msg()),m_number(src.number()) {} DatabaseException(const QString&msg,int aNumber)throw(); virtual ~DatabaseException()throw(){} int number() const { return m_number; }};}}#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -