Click here to Skip to main content
15,885,365 members
Articles / Desktop Programming / MFC

EasyFtp 1.3.2 (for Applications)

Rate me:
Please Sign up or sign in to vote.
4.91/5 (28 votes)
21 Mar 2004CC (ASA 2.5)7 min read 149.7K   3.1K   119  
A 'drop-in' FTP solution for applications providing a full GUI, extended commandline options and no resource files. Use standalone or compiled into your own app.
// AutoFlag.h: interface for the CAutoFlag class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_AUTOFLAG_H__EEBD725A_2C54_4554_96D8_E4CCDC940258__INCLUDED_)
#define AFX_AUTOFLAG_H__EEBD725A_2C54_4554_96D8_E4CCDC940258__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CAutoFlag  
{
public:
	CAutoFlag(BOOL& bFlag, BOOL bState);
	virtual ~CAutoFlag();

protected:
	BOOL& m_bFlag;
	BOOL m_bInitialState;

};

#endif // !defined(AFX_AUTOFLAG_H__EEBD725A_2C54_4554_96D8_E4CCDC940258__INCLUDED_)

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 Creative Commons Attribution-ShareAlike 2.5 License


Written By
Software Developer Maptek
Australia Australia
.dan.g. is a naturalised Australian and has been developing commercial windows software since 1998.

Comments and Discussions