]> git.mxchange.org Git - simgear.git/blobdiff - simgear/package/Package.cxx
Tweak HTTP code to always sleep.
[simgear.git] / simgear / package / Package.cxx
index cf156195e295f3d1e43e9311f22dc56c112e3cfc..7e0b1853ba8abf4714966b042a1d791cab0a5e54 100644 (file)
@@ -112,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();