#ifndef _JAM_PARSE_HPP_ #define _JAM_PARSE_HPP_ #include "Lists.hpp" /* * Copyright 1993, 2000 Christopher Seiwald. * * This file is part of Jam - see jam.c for Copyright information. */ /* * parse.h - make and destroy parse trees as driven by the parser */ /* * parse tree node */ namespace Jam { class Parse { public: Parse( List *(*func)( Parse *p, LOL *args ), Parse *left, Parse *right, Parse *third, const char *string, const char *string1, const int num_ ); void AddRef(void); void Release(void); static void parse_file( const char *f ); static void parse_save( Parse *p ); private: ~Parse(void); public: List *(*func)( Parse *p, LOL *args ); Parse *left; Parse *right; Parse *third; const char *string; const char *string1; const int num; private: int refs; static Parse* yypsave; } ; } #endif _JAM_PARSE_HPP_
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#4 | 1162 | bob_summerwill | Converted LIST into a List class, with all static methods. | ||
#3 | 1161 | bob_summerwill | Added a constructor and destructor to Parse. | ||
#2 | 1156 | bob_summerwill | Converted Parse into a class. | ||
#1 | 1131 | bob_summerwill | More .C to .CPP conversions. | ||
//guest/bob_summerwill/jam/src/parse.h | |||||
#5 | 1130 | bob_summerwill | More .C to .CPP conversions. | ||
#4 | 1129 | bob_summerwill | Some const-correctness fixes. | ||
#3 | 1126 | bob_summerwill | #include dependencies between headers are now modelled explicitly, with #includes as required in header files, rather than it being a client-code responsibility. | ||
#2 | 1120 | bob_summerwill | A fair-size chunk of char* const-correctness modifications. | ||
#1 | 1106 | bob_summerwill | Integrated Jam from "public" to "guest/bob_summerwill". | ||
//guest/perforce_software/jam/src/parse.h | |||||
#2 | 486 | Perforce staff |
Jam 2.3. See RELNOTES for a list of changes from 2.2.x. Just about every source file was touched when jam got ANSI-fied. |
||
#1 | 2 | laura | Add Jam/MR 2.2 source |