typedef problem
i got the next problme. I got typedefinition in the header file , but stuff like string and vector gives me error , that there is error before ";". I am not sure, but is there anything worng with this code, and how can i fix this?
i use dev-c++
#include <iostream>
#include <string>
#include <vector>
typedef string STR;
typedef unsigned int UI;
typedef unsigned short US;
typedef double DBL;
typedef float FT;
typedef vector<STR> vSTR;
typedef vector<UI> vUI;
typedef vector<US> vUS;
typedef vector<DBL> vDBL;
typedef vector<FT> vFT;

