michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef CTOKEN__ michael@0: #define CTOKEN__ michael@0: michael@0: enum eHTMLTokenTypes { michael@0: eToken_unknown=0, michael@0: eToken_start=1, eToken_end, eToken_comment, eToken_entity, michael@0: eToken_whitespace, eToken_newline, eToken_text, eToken_attribute, michael@0: eToken_instruction, eToken_cdatasection, eToken_doctypeDecl, eToken_markupDecl, michael@0: eToken_last //make sure this stays the last token... michael@0: }; michael@0: michael@0: #endif michael@0: michael@0: