C/C++
franz.lst
Associated article: Writing Filters in an Object-Oriented Language
Tags: C/C++
WRITING FILTERS IN AN OBJECT-ORIENTED LANGUAGE_ by Marty Franz [LISTING ONE] /* header file for RegularExpression class */ #define ANY_CHAR 1 /* ^A */ #define A_CHAR 3 /* ^C */ #define BEGIN_STR 2 /* ^B */ #define END_STR 5 /* ^E */ #define INCLUDE_SET 19 /* ^S */ #define OMIT_SET 14 /* ^N */ [...


