Click here to Skip to main content
15,878,748 members
Articles / Desktop Programming / MFC

XML class for processing and building simple XML documents

Rate me:
Please Sign up or sign in to vote.
4.92/5 (131 votes)
23 Sep 2003CPOL 2.8M   23.8K   415  
Link CMarkup into your VC++ app and avoid complex XML tools and dependencies
// MarkupApp.h : main header file for the MARKUP application
//

#if !defined(AFX_MARKUPAPP_H__7E553A2E_D0C6_11D6_9F49_00500486CAFC__INCLUDED_)
#define AFX_MARKUPAPP_H__7E553A2E_D0C6_11D6_9F49_00500486CAFC__INCLUDED_

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

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

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CMarkupApp:
// See Markup.cpp for the implementation of this class
//

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

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMarkupApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CMarkupApp)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MARKUPAPP_H__7E553A2E_D0C6_11D6_9F49_00500486CAFC__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 Code Project Open License (CPOL)


Written By
United States United States
Raised in Southern Ontario Canada. Bachelor of Science from the University of Toronto in Computer Science and Anthropology. Living near Washington D.C. in Virginia, USA.

Comments and Discussions