threadexception.h

来自「这是VCF框架的代码」· C头文件 代码 · 共 63 行

H
63
字号
#ifndef _VCF_THREADEXCEPTION_H__#define _VCF_THREADEXCEPTION_H__//ThreadException.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 ThreadException : public VCF::BasicException {public:    ThreadException(const String & message ):		BasicException( message ){	};	ThreadException( const String & message, const int lineNumber ):		BasicException(message, lineNumber){};	virtual ~ThreadException() throw() {};};};/***CVS Log info*$Log$*Revision 1.2  2004/08/07 02:49:15  ddiego*merged in the devmain-0-6-5 branch to stable**Revision 1.1.2.5  2004/06/06 07:05:33  marcelloptr*changed macros, text reformatting, copyright sections**Revision 1.1.2.3  2004/05/03 03:44:53  ddiego*This checks in a bunch of changes to the FoundationKit for OSX*porting. The thread, mutex, semaphor, condition, and file peers*have all been implemented and tested. The file peer could be improved*and needs search functionality. The locale peer is only partially*complete, but the functions will return values. The unicode transition*is also finished and works OK now.**Revision 1.1.2.2  2004/04/29 04:07:13  marcelloptr*reformatting of source files: macros and csvlog and copyright sections**/#endif // _VCF_THREADEXCEPTION_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?