]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/tabbed_values.hxx
Better error reporting for effects
[simgear.git] / simgear / misc / tabbed_values.hxx
index c66d306bdd68c51e3006fc46a5b4b44e8b605ee1..146ba36834e69985006c92731f8a273e21da1fce 100644 (file)
@@ -1,13 +1,35 @@
+// tabbed_values.hxx -- parse tab separated strings into fields
+//
+// Written by James Turner, started February 2003.
+//
+// Copyright (C) 2003 James Turner
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Library General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// This library 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
+// Library General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+//
+// $Id$
+
 #ifndef SG_TABBED_VALUES_HXX
 #define SG_TABBED_VALUES_HXX
 
 #include <simgear/compiler.h>
 
 #include <vector>
-#include STL_STRING
+#include <string>
 
-SG_USING_STD(vector);
-SG_USING_STD(string);
+using std::vector;
+using std::string;
 
 class SGTabbedValues
 {