Last change
on this file since 8 was
1,
checked in by Maciej Komosinski, 16 years ago
|
added f8 (L-systems) representation and converter f8->f1
|
File size:
616 bytes
|
Rev | Line | |
---|
[1] | 1 | /* |
---|
| 2 | * lemonglobal.h |
---|
| 3 | * L-systemToF1 |
---|
| 4 | * |
---|
| 5 | * Created by Maciej Wajcht on 08-04-04. |
---|
| 6 | * Copyright 2008 __MyCompanyName__. All rights reserved. |
---|
| 7 | * |
---|
| 8 | */ |
---|
| 9 | #include "conv_f8tof1.h" |
---|
| 10 | #include "sstring.h" |
---|
| 11 | |
---|
| 12 | struct Token { |
---|
| 13 | double dblValue; |
---|
| 14 | //int intValue; |
---|
| 15 | SString *strValue; |
---|
| 16 | char strArrValue[30]; |
---|
| 17 | vector<SString> *vectorStr; |
---|
| 18 | vector<Condition> *vectorConditions; |
---|
| 19 | vector<Action*> *vectorActions; |
---|
| 20 | vector<vector<SString> > *parameters; |
---|
| 21 | Condition *cond; |
---|
| 22 | }; |
---|
| 23 | |
---|
| 24 | struct ProductionTailToken { |
---|
| 25 | vector<SubProduction> *subproductions; |
---|
| 26 | }; |
---|
| 27 | |
---|
| 28 | struct ProdPieceToken { |
---|
| 29 | vector<vector<SString> > *parameters; |
---|
| 30 | vector<Action*> *actions; |
---|
| 31 | }; |
---|
Note: See
TracBrowser
for help on using the repository browser.