| 43 | static SimulationInformation *theLastSimulationInformation = 0; |
| 44 | |
| 45 | SimulationInformation::SimulationInformation() |
| 46 | :title(0), description(0), contactName(0), |
| 47 | lengthUnit(0), forceUnit(0), timeUnit(0), |
| 48 | temperatureUnit(0) |
| 49 | { |
| 50 | strcpy(startTime," "); |
| 51 | strcpy(endTime," "); |
| 52 | |
| 53 | if (numSimulationInformation == 0) { |
| 54 | numSimulationInformation++; |
| 55 | } |
| 56 | |
| 57 | theLastSimulationInformation = this; |
| 58 | |
| 59 | theFiles = new File("", "", true); |
| 60 | |
| 61 | this->start(); |
| 62 | } |
| 63 | |
| 64 | //#include <XmlFileStream.h> |
| 65 |