#ifndef TRANSFORM_H_INCLUDED
#define TRANSFORM_H_INCLUDED

///Modifié le: 10/06/2013
///Objet: création

#include <iostream>
#include <string>
#include <SDL/SDL.h>

#include <SDL/SDL_ttf.h>

/*
===La fonction trnasform===
    +Définition:
        Elle permet de convertir un string en SDL_Surface.

*/

SDL_Surface* transform(std::string const chaine, int const taille);
SDL_Surface* transform(std::string const chaine);

#endif // TRANSFORM_H_INCLUDED