📄 testpluginexception.cpp
字号:
// //////////////////////////////////////////////////////////////////////////// Implementation file TestPlugInException.cpp for class TestPlugInException// (c)Copyright 2000, Baptiste Lepilleur.// Created: 2001/06/23// //////////////////////////////////////////////////////////////////////////#include "StdAfx.h"#include "TestPlugInException.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endifTestPlugInException::TestPlugInException( std::string message, Cause cause ) : runtime_error( message ), m_cause( cause ){}TestPlugInException::TestPlugInException( const TestPlugInException © ) : runtime_error( copy ){}TestPlugInException::~TestPlugInException(){}TestPlugInException &TestPlugInException::operator =( const TestPlugInException © ){ runtime_error::operator =( copy ); m_cause = copy.m_cause; return *this;}TestPlugInException::Cause TestPlugInException::getCause() const{ return m_cause;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -