Advertisement
Guest User

Untitled

a guest
May 29th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstring>
  3.  
  4. #include <QtCore>
  5. #include <QtNetwork>
  6.  
  7. #include "Client.h"
  8.  
  9. int main(int argc, char *argv[])
  10. {
  11.     MyClient client("127.0.0.1", 80);
  12.  
  13.     std::cin.ignore();
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement