13 lines
286 B
C++
13 lines
286 B
C++
|
|
// smtprequest.h
|
||
|
|
#ifndef SMTPREQUEST_H
|
||
|
|
#define SMTPREQUEST_H
|
||
|
|
|
||
|
|
#include "concreterequests.h"
|
||
|
|
|
||
|
|
class SmtpRequest : public Concreterequests {
|
||
|
|
public:
|
||
|
|
SmtpRequest(Request* req);
|
||
|
|
Request* createRequest(const QString& type, const QString& target) override;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // SMTPREQUEST_H
|