#ifndef RESPONSECLASSES_H #define RESPONSECLASSES_H #include #include #include #include #include #include //void (*propertyManager)(QByteArray); class Response { public: QByteArray code; QByteArray datas; QString description; void manager(Response *); }; class ResponseProperties { public: QByteArray code; QByteArray datas; QString description; QMap > properties; QMap > propertyDetail; QHash propertyManagerList; void (*manager)(Response *); }; void infoOutput(Response *); void defaultManager(Response *); //void (*manager)(Response *); void macCapabilityManager(QByteArray); #endif // RESPONSECLASSES_H