1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef MALCREDENTIALS_H
#define MALCREDENTIALS_H
#include "onlinecredentials.h"
class MalCredentials : public OnlineCredentials
{
public:
MalCredentials();
bool verifyCredentials();
bool hasVerifiedCredentials() const;
virtual const QString identifierKey() const;
};
#endif // MALCREDENTIALS_H