]> git.mxchange.org Git - simgear.git/blobdiff - simgear/props/props_io.cxx
- new FSF addresses
[simgear.git] / simgear / props / props_io.cxx
index ef5462ea5afe937646cfa7bf7d80a1919646f078..45886a6cd4614e95f75ceccd84d85a6845c9988b 100644 (file)
@@ -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 <simgear_config.h>
+#endif
 
 #include <simgear/compiler.h>
 
@@ -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 () {}