22 lines
441 B
C++
22 lines
441 B
C++
#ifndef __POP3Command_h__
|
|
# define __POP3Command_h__
|
|
|
|
# include "Command.h"
|
|
# include "POP3Session.h"
|
|
|
|
namespace mail {
|
|
|
|
class POP3Server;
|
|
|
|
class POP3Command : public core::Command {
|
|
|
|
public:
|
|
virtual int processCommand(coreutils::ZString &request, core::TCPSession &session) override;
|
|
virtual int processCommand(coreutils::ZString request, POP3Session &session, POP3Server &server);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|