18 lines
203 B
C++
18 lines
203 B
C++
#ifndef __SMTPSession_h__
|
|
#define __SMTPSession_h__
|
|
|
|
#include "includes"
|
|
|
|
namespace mail {
|
|
|
|
class SMTPSession : public core::Session {
|
|
|
|
public:
|
|
std::string state;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|