diff --git a/src/parameter.h b/src/parameter.h --- a/src/parameter.h +++ b/src/parameter.h @@ -4,12 +4,12 @@ * * This file is part of the Virtual Leaf. * - * The Virtual Leaf is free software: you can redistribute it and/or modify + * VirtualLeaf is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * The Virtual Leaf is distributed in the hope that it will be useful, + * VirtualLeaf is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -29,18 +29,18 @@ #include #include -class Parameter { + class Parameter { public: - Parameter(); - ~Parameter(); - void CleanUp(void); - void Read(const char *filename); - void Write(ostream &os) const; - void XMLAdd(xmlNode *root) const; - void XMLRead(xmlNode *root); - void AssignValToPar(const char *namec, const char *valc); - void AssignValArrayToPar(const char *namec, vector valarray); + Parameter(); + ~Parameter(); + void CleanUp(void); + void Read(const char *filename); + void Write(ostream &os) const; + void XMLAdd(xmlNode *root) const; + void XMLRead(xmlNode *root); + void AssignValToPar(const char *namec, const char *valc); + void AssignValArrayToPar(const char *namec, vector valarray); char * arrowcolor; double arrowsize; char * textcolor; @@ -140,10 +140,11 @@ class Parameter { char * dir1; char * dir2; private: -}; + }; -ostream &operator<<(ostream &os, Parameter &p); -const char *sbool(const bool &p); + ostream &operator<<(ostream &os, Parameter &p); + const char *sbool(const bool &p); + #endif