BARANTMail/__SMTP_QUIT.h
Brad Arant 6c844983d9 sync
2022-06-29 13:34:49 -07:00

20 lines
321 B
C++

#ifndef ____SMTP_QUIT_h__
# define ____SMTP_QUIT_h__
# include "SMTPCommand.h"
# include "SMTPSession.h"
namespace mail {
class SMTPServer;
class __SMTP_QUIT : public Command {
public:
int processCommand(coreutils::ZString &request, core::TCPSession &session) override;
};
}
#endif