]> git.mxchange.org Git - simgear.git/blobdiff - simgear/package/Package.cxx
Tweak HTTP code to always sleep.
[simgear.git] / simgear / package / Package.cxx
index b866879e6c99a1fe469c7a228a529261f5dfac41..7e0b1853ba8abf4714966b042a1d791cab0a5e54 100644 (file)
@@ -1,4 +1,19 @@
-
+// Copyright (C) 2013  James Turner - zakalawe@mac.com
+//
+// 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.
+//
 
 #include <simgear/package/Package.hxx>
 
@@ -97,6 +112,16 @@ unsigned int Package::revision() const
     return m_props->getIntValue("revision");
 }
     
+std::string Package::name() const
+{
+    return m_props->getStringValue("name");
+}
+
+std::string Package::description() const
+{
+    return getLocalisedProp("decription");
+}
+    
 SGPropertyNode* Package::properties() const
 {
     return m_props.ptr();