notimplementedexception.h
来自「这是VCF框架的代码」· C头文件 代码 · 共 52 行
H
52 行
#ifndef _VCF_NOTIMPLEMENTEDEXCEPTION_H__#define _VCF_NOTIMPLEMENTEDEXCEPTION_H__//NotImplementedException.h/*Copyright 2000-2004 The VCF Project.Please see License.txt in the top level directorywhere you installed the VCF.*/#if _MSC_VER > 1000# pragma once#endifnamespace VCF {class FOUNDATIONKIT_API NotImplementedException : public BasicException {public: NotImplementedException(): BasicException( NOT_IMPLEMENTED_EXCEPTION ){}; NotImplementedException( const String & message ): BasicException( message ){}; NotImplementedException( const String & message, const int lineNumber ): BasicException(message, lineNumber){}; virtual ~NotImplementedException() throw() {};};};/***CVS Log info*$Log$*Revision 1.2 2004/12/01 04:31:41 ddiego*merged over devmain-0-6-6 code. Marcello did a kick ass job*of fixing a nasty bug (1074768VCF application slows down modal dialogs.)*that he found. Many, many thanks for this Marcello.**Revision 1.1.2.1 2004/08/23 22:26:06 marcelloptr*added NotImplementedException**/#endif // _VCF_NOTIMPLEMENTEDEXCEPTION_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?