18 lines
319 B
C++
18 lines
319 B
C++
#ifndef ____IMAP_APPEND_h__
|
|
# define ____IMAP_APPEND_h__
|
|
|
|
# include "IMAPCommand.h"
|
|
# include "IMAPSession.h"
|
|
|
|
namespace mail {
|
|
|
|
class __IMAP_APPEND : public IMAPCommand {
|
|
|
|
int processCommand(coreutils::PString request, IMAPSession &session, std::stringstream &data);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|