fork download
  1. #include "stdafx.h"
  2.  
  3. class HTTPContainer{
  4. private:
  5. SOCKET isock;
  6. HTTPHeader header_maker(std::list<string> *list);
  7.  
  8. public:
  9. HTTPContainer(SOCKET sock);
  10. void proc();
  11. };
  12.  
  13. typedef struct HTTPHeader{
  14. char method;
  15. char* host;
  16.  
  17. std::list<char*> reqHeader;
  18. };
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:20: fatal error: stdafx.h: No such file or directory
 #include "stdafx.h"
                    ^
compilation terminated.
stdout
Standard output is empty