X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fprops%2Fprops_io.cxx;h=45886a6cd4614e95f75ceccd84d85a6845c9988b;hb=dcb95d131bc6aef1abe25d1f415e309f06e52436;hp=ef5462ea5afe937646cfa7bf7d80a1919646f078;hpb=106198fa20b0c15024f74f2720a15c6fe7d11723;p=simgear.git diff --git a/simgear/props/props_io.cxx b/simgear/props/props_io.cxx index ef5462ea..45886a6c 100644 --- a/simgear/props/props_io.cxx +++ b/simgear/props/props_io.cxx @@ -1,3 +1,16 @@ +/** + * \file props_io.cxx + * Started Fall 2000 by David Megginson, david@megginson.com + * This code is released into the Public Domain. + * + * See props.html for documentation [replace with URL when available]. + * + * $Id$ + */ + +#ifdef HAVE_CONFIG_H +# include +#endif #include @@ -38,7 +51,7 @@ class PropsVisitor : public XMLVisitor public: PropsVisitor (SGPropertyNode * root, const string &base, int default_mode = 0) - : _root(root), _level(0), _base(base), _hasException(false), _default_mode(default_mode) {} + : _default_mode(default_mode), _root(root), _level(0), _base(base), _hasException(false) {} virtual ~PropsVisitor () {}