/********************************************************************* Copyright 2001 Alexander Berthold, alexander-berthold@web.de. -- This file is part of ctkCommon -- "ctkCommon" is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version. "ctkCommon" is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with "ctkCommon"; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------- If you find any bugs or if you make other corrections/ enhancements, i'd appreciate if you'd let me know about that. My email is alexander-berthold@web.de If you share this code, do not remove this text. --------------------------------------------------------------- Class: ctkCheckValid Author: Alexander Berthold Copyright: Alexander Berthold Date: 2001/06/05 Version: 0.1.01 Purpose: Pure virtual base class. Defines methods providing validation. Version history: - 2001/06/05 Current source labeled version 0.1.01 *********************************************************************/ // ctkCheckValid.h: interface for the ctkCheckValid class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_CTKCHECKVALID_H__D93BEE27_F124_4065_992B_F5B7A39D4D24__INCLUDED_) #define AFX_CTKCHECKVALID_H__D93BEE27_F124_4065_992B_F5B7A39D4D24__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class ctkCheckValid { public: virtual bool fCheckValid() const PURE_VIRTUAL_FALSE; #ifdef _DEBUG static bool fRunDiagnostics() { DebugBreak(); } #endif }; #endif // !defined(AFX_CTKCHECKVALID_H__D93BEE27_F124_4065_992B_F5B7A39D4D24__INCLUDED_)
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here
Math Primers for Programmers