Symulacja NAT na przedmiot Symulacje Komputerowe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
410 B

  1. /**
  2. * @file common.h
  3. *
  4. * Created on: 10.01.2017
  5. * @author Piotr Dergun
  6. */
  7. #ifndef COMMON_H_
  8. #define COMMON_H_
  9. #include <iostream>
  10. #include <queue>
  11. #include <map>
  12. #include <functional>
  13. #include <cstdlib>
  14. #include <ctime>
  15. #include <unistd.h>
  16. #include <sstream>
  17. #include <cstdio>
  18. #include <ncurses.h>
  19. #include <pthread.h>
  20. #include <cstring>
  21. using namespace std;
  22. //#define DEBUG 1
  23. #endif /* COMMON_H_ */