⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testpluginexception.cpp

📁 C++中的单元测试类库
💻 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 &copy ) :     runtime_error( copy ){}TestPlugInException::~TestPlugInException(){}TestPlugInException &TestPlugInException::operator =( const TestPlugInException &copy ){  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 + -