Click here to Skip to main content
15,897,371 members
Articles / Programming Languages / C++

Fast tokenizer

Rate me:
Please Sign up or sign in to vote.
4.71/5 (11 votes)
5 Sep 20016 min read 79.8K   1.4K   44  
Fast tokenizer for C++ - like 'lexx'
// cooLexxerInputStream.h: interface for the cooLexxerInputStream class.
//
//////////////////////////////////////////////////////////////////////

/*********************************************************************
Class:      cooLexxerInputStream
Author:     Alexander Berthold
Copyright:  Alexander Berthold
Date:       19.4.2001
Purpose:    Base class for the input stream for the lexxer.
            Must support 'ctkExternalObjectPointer'.
            See 'cooLexxerTextInputStream' for an application.
*********************************************************************/

#if !defined(AFX_COOLEXXERINPUTSTREAM_H__2EEE2883_3AE8_42FD_9387_38FF266EAD49__INCLUDED_)
#define AFX_COOLEXXERINPUTSTREAM_H__2EEE2883_3AE8_42FD_9387_38FF266EAD49__INCLUDED_

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

class cooLexxerInputStream :
	public ctkExternalObjectPointer,
	public ctkCheckValid
{
// Construction
public:
	cooLexxerInputStream()
        {};
	virtual ~cooLexxerInputStream()
        {};

// Attributes
protected:

// Operations
public:
	virtual TCHAR	tcGetNextCharacter() = 0;
	virtual bool	fPutBack(LPCTSTR lpszText) = 0;
	virtual bool	fPutBack(TCHAR tcChar) = 0;
	virtual bool	fIsEofReached() const = 0;
};

#endif // !defined(AFX_COOLEXXERINPUTSTREAM_H__2EEE2883_3AE8_42FD_9387_38FF266EAD49__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
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions