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