Click here to Skip to main content
15,881,173 members
Articles / Desktop Programming / MFC

The alxBase classes for work with DBF files

Rate me:
Please Sign up or sign in to vote.
5.00/5 (22 votes)
5 Nov 20021 min read 360.8K   3.8K   57  
The alxBase classes for work with dbf files.
/////////////////////////////////////////////////////////////////////////////
/*
 Copyright� 2002, Alexey Dolgachov
 mail:	alxsoft@gazinter.net	
 web:	http://www.alxsoft.narod.ru
*/
/////////////////////////////////////////////////////////////////////////////
#if !defined(ALX_PARSEREXEPTION_H__INCLUDED_)
#define ALX_PARSEREXEPTION_H__INCLUDED_

#include "ALXParserDef.h"

////////////////////////////////////////////////////////////////////////
// Info structures

//The information on a error
struct CALXParserErrorInfo
{
// Attributes
	UINT	m_nErrorCode;		// error code
	CString	m_strDescription;	// description

#ifdef _DEBUG
	virtual void Dump(CDumpContext& dc) const;
#endif
};

// List errors item
struct CALXParserErrorInfoItem
{
	CALXParserErrorInfo	m_stErrorInfo;				// structure describing a variable
	CALXParserErrorInfoItem* m_pstPrevErrorItem;	// the pointer on the previous item of the list
};

////////////////////////////////////////////////////////////////////////
// CALXParserException - Parser error trapping mechanism
class  ALX_EXT_CLASS CALXParserException : public CException
{
	DECLARE_DYNAMIC(CALXParserException)

// Constructors
public:
	CALXParserException(CALXParserErrorInfoItem* pErrorInfoItem);

// Attributes
public:
	CALXParserErrorInfo*	m_pErrorInfo;

private:	
	CALXParserErrorInfoItem* m_pErrorInfoItem;
	int	m_nErrorCount;

// Operations
public:
	int GetErrorCount();
	void GetErrorInfo(int nIndex = 0);

// Implementation
public:
	virtual ~CALXParserException();
	virtual BOOL GetErrorMessage(LPTSTR lpszError, UINT nMaxError,
		PUINT pnHelpContext = NULL);

protected:
	void FillErrorInfo(int nIndex);
};

void AFXAPI ALXThrowFunOperException(UINT nIDS, ...);

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

#endif // !defined(ALX_PARSEREXEPTION_H__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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Russian Federation Russian Federation
Year of birth - 1974.
Eeducation - was ended by Kaliningrad State University in 1997.
Now I work as the engineer-programmer in Kaliningrad (RUSSIA).

Comments and Discussions