BARANTMail/__SMTP_HELP.h
2022-07-08 19:30:00 -07:00

15 lines
288 B
C++

#ifndef ____SMTP_HELP_h__
# define ____SMTP_HELP_h__
# include "SMTPCommand.h"
namespace mail {
class __SMTP_HELP : public SMTPCommand {
int processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) override;
};
}
#endif