Minor cleanup.
[lsystem3d.git] / src / lsystemparameters.h
CommitLineData
15c82487 1// Copyright (C) 2006 Erik Dahlberg
2//
1a372e99 3// This file is part of LSystem3D.
15c82487 4//
5// LSystem3D is free software; you can redistribute it and/or
6// modify it under the terms of the GNU General Public License
7// as published by the Free Software Foundation; either version 2
8// of the License, or (at your option) any later version.
9//
10// LSystem3D is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with LSystem3D; if not, write to the Free Software
17// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
19
20
21
22#ifndef LSYSTEMPARAMETERS_H
23#define LSYSTEMPARAMETERS_H
24
25#include <string>
26
27#include "lindenmayersystem.h"
28#include "xmlstructure.h"
29
30using namespace std;
31
32
33
34/**
acf054bf 35 * Saver and loader for L-system parameters
15c82487 36 */
37class LSystemParameters : protected XMLStructure
38{
39public:
acf054bf 40
15c82487 41 /**
42 * Constructor
43 */
44 LSystemParameters();
45
46 /**
47 * Destructor
48 */
49 ~LSystemParameters();
50
acf054bf 51
15c82487 52 /**
53 * Load parameters from xml file
526db675 54 * @param lsystem put parameters into this L-system
15c82487 55 * @param path path to xml file
56 */
57 void load(LindenmayerSystem *lsystem, string path);
58
59 /**
60 * Save parameters to xml file
526db675 61 * @param lsystem get parameters from this L-system
15c82487 62 * @param path path to xml file
63 */
64 void save(LindenmayerSystem *lsystem, string path);
65};
66
67
68
69#endif