Click here to Skip to main content
15,892,005 members
Articles / Desktop Programming / MFC

LitmusV - Validity Verification for Variables

Rate me:
Please Sign up or sign in to vote.
4.33/5 (3 votes)
8 Jul 2011CPOL11 min read 17.4K   315   8  
A simple and easy way to check validity of variables in native C++ language
// ThreadTest.h : main header file for the PROJECT_NAME application
//

#pragma once

#ifndef __AFXWIN_H__
	#error "include 'stdafx.h' before including this file for PCH"
#endif

#include "resource.h"		// main symbols


// CThreadTestApp:
// See ThreadTest.cpp for the implementation of this class
//

class CThreadTestApp : public CWinApp
{
public:
	CThreadTestApp();

// Overrides
public:
	virtual BOOL InitInstance();

// Implementation

	DECLARE_MESSAGE_MAP()
};

extern CThreadTestApp theApp;

By viewing downloads associated with this article you agree to the Terms of Service 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.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
I started to write software since 1999 and have developed various products including security solutions and system utilities.

Microsoft Visual C++ MVP
Assistant Professor at the University of Virginia
Website: http://yongkwon.info

Comments and Discussions