transform.h 462 B

1234567891011121314151617181920212223
  1. #ifndef TRANSFORM_H_INCLUDED
  2. #define TRANSFORM_H_INCLUDED
  3. ///Modifié le: 10/06/2013
  4. ///Objet: création
  5. #include <iostream>
  6. #include <string>
  7. #include <SDL/SDL.h>
  8. #include <SDL/SDL_ttf.h>
  9. /*
  10. ===La fonction trnasform===
  11. +Définition:
  12. Elle permet de convertir un string en SDL_Surface.
  13. */
  14. SDL_Surface* transform(std::string const chaine, int const taille);
  15. SDL_Surface* transform(std::string const chaine);
  16. #endif // TRANSFORM_H_INCLUDED