/************************************************************************* * * $RCSfile: all_toks.cxx,v $ * * $Revision: 1.3 $ * * last change: $Author: np $ $Date: 2002-05-14 09:02:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (the "License"); You may not use this file * except in compliance with the License. You may obtain a copy of the * License at http://www.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ #include #include // NOT FULLY DEFINED SERVICES #include #include "c_dealer.hxx" #include "tokintpr.hxx" namespace cpp { void Token::DealOut( ::TokenDealer & o_rDealer ) { // KORR HACK (casting to derivation cpp::TokenDealer) o_rDealer.AsDistributor()->Deal_CppCode(*this); } #define DEF_TOKEN_CLASS(name) \ void \ Tok_##name::Trigger( TokenInterpreter & io_rInterpreter ) const \ { io_rInterpreter.Hdl_##name(*this); } \ INT16 \ Tok_##name::TypeId() const { return Tid_##name; } \ const char * \ Tok_##name::Text() const { return #name; } #define DEF_TOKEN_CLASS_WITHTEXT(name, text ) \ void \ Tok_##name::Trigger( TokenInterpreter & io_rInterpreter ) const \ { io_rInterpreter.Hdl_##name(*this); } \ INT16 \ Tok_##name::TypeId() const { return Tid_##name; } \ const char * \ Tok_##name::Text() const { return text; } DEF_TOKEN_CLASS_WITHTEXT(Identifier,sText) DEF_TOKEN_CLASS_WITHTEXT(Operator,sText) DEF_TOKEN_CLASS(operator) DEF_TOKEN_CLASS(class) DEF_TOKEN_CLASS(struct) DEF_TOKEN_CLASS(union) DEF_TOKEN_CLASS(enum) DEF_TOKEN_CLASS(typedef) DEF_TOKEN_CLASS(public) DEF_TOKEN_CLASS(protected) DEF_TOKEN_CLASS(private) DEF_TOKEN_CLASS(template) DEF_TOKEN_CLASS(virtual) DEF_TOKEN_CLASS(friend) DEF_TOKEN_CLASS_WITHTEXT(Tilde,"~") DEF_TOKEN_CLASS(const) DEF_TOKEN_CLASS(volatile) DEF_TOKEN_CLASS(extern) DEF_TOKEN_CLASS(static) DEF_TOKEN_CLASS(mutable) DEF_TOKEN_CLASS(register) DEF_TOKEN_CLASS(inline) DEF_TOKEN_CLASS(explicit) DEF_TOKEN_CLASS(namespace) DEF_TOKEN_CLASS(using) DEF_TOKEN_CLASS(throw) DEF_TOKEN_CLASS_WITHTEXT(SwBracket_Left,"{") DEF_TOKEN_CLASS_WITHTEXT(SwBracket_Right,"}") DEF_TOKEN_CLASS_WITHTEXT(ArrayBracket_Left,"[") DEF_TOKEN_CLASS_WITHTEXT(ArrayBracket_Right,"]") DEF_TOKEN_CLASS_WITHTEXT(Bracket_Left,"(") DEF_TOKEN_CLASS_WITHTEXT(Bracket_Right,")") DEF_TOKEN_CLASS_WITHTEXT(DoubleColon,"::") DEF_TOKEN_CLASS_WITHTEXT(Semicolon,";") DEF_TOKEN_CLASS_WITHTEXT(Comma,",") DEF_TOKEN_CLASS_WITHTEXT(Colon,":") DEF_TOKEN_CLASS_WITHTEXT(Assign,"=") DEF_TOKEN_CLASS_WITHTEXT(Less,"<") DEF_TOKEN_CLASS_WITHTEXT(Greater,">") DEF_TOKEN_CLASS_WITHTEXT(Asterix,"*") DEF_TOKEN_CLASS_WITHTEXT(AmpersAnd,"&") DEF_TOKEN_CLASS_WITHTEXT(Ellipse,"...") DEF_TOKEN_CLASS_WITHTEXT(DefineName,sText) DEF_TOKEN_CLASS_WITHTEXT(MacroName,sText) DEF_TOKEN_CLASS_WITHTEXT(MacroParameter,sText) // DEF_TOKEN_CLASS_WITHTEXT(PreProDefinition,sText) void Tok_PreProDefinition::Trigger( TokenInterpreter & io_rInterpreter ) const { io_rInterpreter.Hdl_PreProDefinition(*this); } INT16 Tok_PreProDefinition::TypeId() const { return Tid_PreProDefinition; } const char * Tok_PreProDefinition::Text() const { return sText; } DEF_TOKEN_CLASS_WITHTEXT(BuiltInType,sText) DEF_TOKEN_CLASS_WITHTEXT(TypeSpecializer,sText) DEF_TOKEN_CLASS_WITHTEXT(Constant,sText) const char * Tok_UnblockMacro::Text() const { return sMacroName; } void Tok_UnblockMacro::DealOut( ::TokenDealer & o_rDealer ) { // KORR HACK (casting to derivation cpp::TokenDealer) o_rDealer.AsDistributor()->Deal_Cpp_UnblockMacro(*this); } } // namespace cpp