Click here to Skip to main content
15,884,298 members
Articles / Desktop Programming / MFC

StL Data File Viewer

Rate me:
Please Sign up or sign in to vote.
4.87/5 (43 votes)
5 Mar 2003CPOL2 min read 510.1K   14.7K   60  
A simple StereoLithography data file viewer.
// ListException.cpp: implementation of the CListException class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "ListException.h"

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

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CListException::CListException(LIST_ERROR Type)
{
	msg = new char[80];
	switch(Type)
	{
		case LIST_OUT_OF_MEMORY:
			msg = "\nNo Sufficient Memory!!\n";
			break;
		case LIST_BOUND_LOWER:
			msg = "\nList Breaking Lower Boundary!!\n";
			break;
		case LIST_BOUND_UPPER:
			msg = "\nList Breaking Upper Boundary!!\n";
			break;
		case LIST_EMPTY:
			msg = "\nTried To Get Data From Empty List!!\n";
			break;
		case ERROR_UNKNOWN:
			msg = "\nUnknown Exception Raised By List!!\n";
	}

}

CListException::~CListException()
{
	if(msg)
		delete [] msg;
}

char* CListException::ErrorMessage()
{
	return msg;
}

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
Product Manager Mahindra & Mahindra
India India
Sharjith is a Mechanical Engineer with strong passion for Automobiles, Aircrafts and Software development.

Comments and Discussions