#pragma once #include #include #include #include #include struct Service { Service(QJsonObject const &o); QPixmap const &pixmap() const; QString title; QUrl url; QUrl documentationUrl; QString image; QString description; QString specialNote; bool LDAP; protected: mutable QPixmap _image; }; class Services:public QList { public: Services():QList() {} Services(QJsonArray const &a); };