Hi Peter,
I am not really sure if I understood it right. But yes, it looks strange for me.
Once I was working with BounceChecker and it was always complaining about a missing default construter.
It is the same logic but only it was a struct:
class Data: public PacketBase::Data
{
Q_SHARED_DATA_COPY (Data);
public:
quint16 port;
QHostAddress ipAddress;
quint32 speed;
ResultSet resultSet;
QueryHitsData queryHitsData;
};
Maybe the compiler is complaining about a missing destructor in this class.
Data::Data()
: port(0), speed(0)
{}
Regards,
Markus
