21 lines
338 B
C++
21 lines
338 B
C++
#ifndef ___POST_h__
|
|
#define ___POST_h__
|
|
|
|
#include "Command.h"
|
|
#include "Session.h"
|
|
#include "Header.h"
|
|
#include "Response.h"
|
|
|
|
namespace http {
|
|
|
|
class _POST : public core::Command {
|
|
|
|
public:
|
|
int processCommand(std::string request, core::Session *session, std::stringstream &data) override;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|