Move files around

This commit is contained in:
Alex Hultman
2018-09-15 05:04:34 +02:00
parent 527089c621
commit eee6e97fda
13 changed files with 13 additions and 13 deletions
+30
View File
@@ -0,0 +1,30 @@
#ifndef HTTPCONTEXTDATA_H
#define HTTPCONTEXTDATA_H
#include "HttpRouter.h"
#include <functional>
namespace uWS {
template<bool> struct HttpResponse;
struct HttpRequest;
template <bool SSL>
struct HttpContextData {
private:
public:
struct UserData {
HttpResponse<SSL> *httpResponse;
HttpRequest *httpRequest;
};
HttpRouter<UserData *> router;
};
}
#endif // HTTPCONTEXTDATA_H