mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-12 05:41:15 +01:00
16 lines
204 B
C++
16 lines
204 B
C++
#ifndef HTTP_PARSER_H
|
|
#define HTTP_PARSER_H
|
|
|
|
#include "core/reference.h"
|
|
|
|
class HTTPParser : public Reference {
|
|
public:
|
|
HTTPParser();
|
|
~HTTPParser();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|