pandemonium_engine/modules/http_server_simple/http_writer.h

18 lines
245 B
C++
Raw Normal View History

2022-06-30 21:43:16 +02:00
#ifndef HTTP_WRITER_H
#define HTTP_WRITER_H
#include "core/object/reference.h"
2022-06-30 21:43:16 +02:00
class HTTPWriter : public Reference {
2022-06-30 23:12:32 +02:00
GDCLASS(HTTPWriter, Reference);
2022-06-30 21:43:16 +02:00
public:
HTTPWriter();
~HTTPWriter();
protected:
static void _bind_methods();
};
#endif