/* * lemonglobal.h * L-systemToF1 * * Created by Maciej Wajcht on 08-04-04. * Copyright 2008 __MyCompanyName__. All rights reserved. * */ #include "conv_f8tof1.h" #include "sstring.h" struct Token { double dblValue; //int intValue; SString *strValue; char strArrValue[30]; vector *vectorStr; vector *vectorConditions; vector *vectorActions; vector > *parameters; Condition *cond; }; struct ProductionTailToken { vector *subproductions; }; struct ProdPieceToken { vector > *parameters; vector *actions; };