std::string ResObject::licenseToConfirm( const Locale & lang_r ) const
{ return lookupStrAttribute( sat::SolvAttr::eula, lang_r ); }
+ std::string ResObject::distribution() const
+ { return lookupStrAttribute( sat::SolvAttr::distribution ); }
+
ByteCount ResObject::installSize() const
{ return ByteCount( lookupNumAttribute( sat::SolvAttr::installsize ), ByteCount::K ); }
/**
* \short Vendor
*
- * For Example "Novell Inc."
+ * For example "Novell Inc."
*/
Vendor vendor() const
{ return Resolvable::vendor().asString(); }
+ /** The distribution string.
+ * E.g. \c code-11.
+ */
+ std::string distribution() const;
+
/** Installed size. */
ByteCount installSize() const;
/** \deprecated Use installSize which is more precise.*/