transform.h 787 B

123456789101112131415161718192021222324252627282930
  1. #ifndef TRANSFORM_H_INCLUDED
  2. #define TRANSFORM_H_INCLUDED
  3. ///Modifié le: 10/10/2013
  4. ///Objet: ajout de la fonction cpnvertirIntEnCaracteres
  5. #include <iostream>
  6. #include <string>
  7. #include <SDL/SDL.h>
  8. #undef main
  9. #include <SDL/SDL_ttf.h>
  10. /*
  11. ===La fonction transform===
  12. +Définition:
  13. Elle permet de convertir un string en SDL_Surface. Attention ! Stocker la valeur retournée dans
  14. un pointeur et n'oubliez pas le SDL_FreeSurface ! Sinon, risque de fuite de mémoire.
  15. */
  16. SDL_Surface* transform(std::string const chaine, int const taille, SDL_Color couleur);
  17. SDL_Surface* transform(std::string const chaine, int const taille);
  18. SDL_Surface* transform(std::string const chaine);
  19. std::string convertirEntierEnCaracteres(int numero);
  20. #endif // TRANSFORM_H_INCLUDED