BARANTMail/__SMTP_HELP.h

20 lines
352 B
C++

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