Click here to Skip to main content
15,897,094 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'
// cooLexxerCharTokenRule.h: interface for the cooLexxerCharTokenRule class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_COOLEXXERCHARTOKENRULE_H__D823B834_7F51_4D60_942E_5269478B9FC1__INCLUDED_)
#define AFX_COOLEXXERCHARTOKENRULE_H__D823B834_7F51_4D60_942E_5269478B9FC1__INCLUDED_

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

class cooLexxerCharTokenRule : public cooLexxerTokenRule  
{
// Construction/destruction
public:
	cooLexxerCharTokenRule(int nIDValue, ooltr_flags ltrf, LPCTSTR lpszToken);
	virtual ~cooLexxerCharTokenRule();

// Operations
public:
	// cooParserTokenRule operations
	virtual bool	fDoesApply(const cooLexxerContext *plcContext, TCHAR tcChar, bool *pfCompleted, 
							   int nStartPos, int nCurPos) const;
	virtual void	vApplied( cooLexxerContext *plcContext, TCHAR tcChar, bool fComplete, 
							  int nStartPos, int nCurPos) const;
	virtual bool	fGetResultString(const cooLexxerContext *plcContext, std::tstring& strResult) const
					{ return false; };
};

#endif // !defined(AFX_COOLEXXERCHARTOKENRULE_H__D823B834_7F51_4D60_942E_5269478B9FC1__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