Click here to Skip to main content
15,881,757 members
Articles / Programming Languages / C++

A Class for Creating a Trace Log

Rate me:
Please Sign up or sign in to vote.
3.88/5 (10 votes)
17 Nov 19991 min read 100.7K   2.2K   42  
A class for creating a Trace log
// TraceDoc.cpp : implementation of the CTraceDoc class
//

#include "stdafx.h"
#include "Trace.h"

#include "TraceDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CTraceDoc

IMPLEMENT_DYNCREATE(CTraceDoc, CDocument)

BEGIN_MESSAGE_MAP(CTraceDoc, CDocument)
	//{{AFX_MSG_MAP(CTraceDoc)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CTraceDoc construction/destruction

CTraceDoc::CTraceDoc()
{
	// TODO: add one-time construction code here
	CTraceApp::m_LogTrace.WriteLine("CDoc constructor");

}

CTraceDoc::~CTraceDoc()
{
}

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

	CTraceApp::m_LogTrace.WriteLine("OnNew Document");


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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CTraceDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CTraceDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CTraceDoc 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
President Starpoint Software Inc.
United States United States
Bob Pittenger is founder and President of Starpoint Software Inc. He holds a B.A. degree from Miami University, M.S. and Ph.D. degrees from Purdue University, and an MBA from Xavier University. He has been programming since 1993, starting with Windows application development in C++/MFC and moving to C# and .NET around 2005 and is a .NET Microsoft Certified Professional Developer.

Bob is the author of two books:
Billionaire: How the Ultra-Rich Built Their Fortunes Through Good and Evil and What You Can Learn from Them
and
Wealthonomics: The Most Important Economic and Financial Concepts that Can Make You Rich Fast.
Visit http://www.billionairebook.net for more information.

Comments and Discussions