worker.h 209 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 #ifndef __HTTP_WORKER_H__ #define __HTTP_WORKER_H__ #include "class.h" #include "http/request/parser.h" CLASS(HttpWorker) { HttpRequestParser parser; }; #endif // __HTTP_WORKER_H__ // vim: set ts=4 sw=4: