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