Click here to Skip to main content
15,886,833 members
Articles / Desktop Programming / MFC

CTreeView Iterator

Rate me:
Please Sign up or sign in to vote.
4.92/5 (23 votes)
27 Mar 20024 min read 158.7K   5.4K   40  
An iterator to parse subtree and execute function on each item/node
// CodeProjectSampleDoc.cpp : implementation of the CCodeProjectSampleDoc class
//

#include "stdafx.h"
#include "CodeProjectSample.h"

#include "CodeProjectSampleDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCodeProjectSampleDoc

IMPLEMENT_DYNCREATE(CCodeProjectSampleDoc, CDocument)

BEGIN_MESSAGE_MAP(CCodeProjectSampleDoc, CDocument)
	//{{AFX_MSG_MAP(CCodeProjectSampleDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCodeProjectSampleDoc construction/destruction

CCodeProjectSampleDoc::CCodeProjectSampleDoc()
{
	// TODO: add one-time construction code here

}

CCodeProjectSampleDoc::~CCodeProjectSampleDoc()
{
}

BOOL CCodeProjectSampleDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CCodeProjectSampleDoc serialization

void CCodeProjectSampleDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CCodeProjectSampleDoc diagnostics

#ifdef _DEBUG
void CCodeProjectSampleDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CCodeProjectSampleDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CCodeProjectSampleDoc commands

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.


Written By
Web Developer
France France
After years passed in services companies, I now work for Euromaster, an international group dedicated to vehicules maintenance. I also develop for my own usage. I both use Java and C++ languages and now, I integrate XML documents and XSL syntax in my applications even if SQL Databases like Oracle remain my main data sources

Comments and Discussions