LecteurSSD.cpp 495 B

12345678910111213141516171819202122232425
  1. #include "LecteurSSD.h"
  2. Client* readConfig()
  3. {
  4. std::string const source("config.txt");
  5. std::ifstream fluxIn(source.c_str());
  6. if (fluxIn)
  7. {
  8. //Ouverture fichier succés
  9. std::string IP;
  10. int port;
  11. fluxIn >> IP;
  12. fluxIn >> port;
  13. return new Client(IP, port);
  14. }
  15. else
  16. {
  17. //Echec ouverture fichier
  18. std::cout << "ERREUR: impossible de lire le fichier " << source << " ." << std::endl;
  19. return 0;
  20. }
  21. }