Main Page   Modules   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

production_spec.hh

Go to the documentation of this file.
00001 /*
00002  *  File:       production_spec.hh
00003  *              $Id: production_spec.hh,v 1.5 2002/06/26 20:49:20 alec Exp $
00004  *
00005  *  Author:     Alec Panovici (alecu@email.com)
00006  * 
00007  *  Comments:
00008  *
00009  *  Revision history:
00010  *
00011  *  $Log: production_spec.hh,v $
00012  *  Revision 1.5  2002/06/26 20:49:20  alec
00013  *  g++ 3.x happy
00014  *
00015  *  Revision 1.4  2002/06/13 11:41:12  alec
00016  *  added #line stuff
00017  *
00018  *  Revision 1.3  2002/05/27 03:03:17  alec
00019  *  doc update
00020  *
00021  *  Revision 1.2  2002/05/10 07:15:10  alec
00022  *  parser parse tree ok
00023  *
00024  *  Revision 1.1  2002/05/08 18:21:06  alec
00025  *  *** empty log message ***
00026  *
00027  */
00028 
00029 
00030 /*
00031   Copyright (C) 2002 Alexandru Panoviciu (alecu@email.com)
00032 
00033   This program is free software; you can redistribute it and/or modify
00034   it under the terms of the GNU General Public License as published by
00035   the Free Software Foundation; either version 2 of the License, or
00036   (at your option) any later version.
00037 
00038   This program is distributed in the hope that it will be useful,
00039   but WITHOUT ANY WARRANTY; without even the implied warranty of
00040   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00041   GNU General Public License for more details.
00042 
00043   You should have received a copy of the GNU General Public License
00044   along with this program; if not, write to the Free Software
00045   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00046 
00047  */
00048 
00049 #ifndef __PRODUCTION_SPEC_HH__
00050 #define __PRODUCTION_SPEC_HH__
00051 
00052 #include <string>
00053 #include <iostream>
00054 using namespace std;
00055 
00056 
00057 #include "debug.h"
00058 #include "parse_util.hh"
00059 
00060 class EbnfNode;
00061 class EbnfLaNode;
00062 
00066 class ProductionSpec
00067 {
00068 public:
00069 
00070   ProductionSpec (const string &name_,
00071                   const string &retType_, const Position &retTypePos_,
00072                   const string &formalArgs_, const Position &formalArgsPos_,
00073                   const string &exceptList_, const Position &exceptListPos_,
00074                   const string &preambleCode_, const Position &preambleCodePos_,
00075                   EbnfLaNode *expansion_,
00076                   const Position &pos_) :
00077     name(name_), retType(retTypePos_, retType_),
00078     formalArgs(formalArgsPos_, formalArgs_),
00079     exceptList(exceptListPos_, exceptList_),
00080     preambleCode(preambleCodePos_, preambleCode_),
00081     expansion(expansion_), pos(pos_)
00082   {}
00083 
00084   ProductionSpec (const ProductionSpec &o) :
00085     name(o.name), retType(o.retType), formalArgs(o.formalArgs),
00086     exceptList(o.exceptList), preambleCode(o.preambleCode),
00087     expansion(o.expansion), pos(o.pos)
00088   {}
00089 
00090 #ifdef DEBUG
00091   void dump (ostream &os) const;
00092 #endif  
00093 
00097   string name;
00098 
00103   CodeChunk retType;
00104 
00109   CodeChunk formalArgs;
00110 
00115   CodeChunk exceptList;
00116 
00121   CodeChunk preambleCode;
00122 
00126   EbnfLaNode *expansion;
00127 
00131   Position pos;
00132 };
00133 
00134 #endif /* #ifndef __PRODUCTION_SPEC_HH__ */

Generated at Tue Jul 9 21:05:45 2002 for CppCC by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001