Go to the source code of this file.
|
#define | foreach(type, lst) for (std::vector<type>::iterator it=lst.begin();it != lst.end(); it++) |
|
#define | foreach_l(type, lst) for (std::list<type>::iterator it=lst.begin();it != lst.end(); it++) |
|
#define | foreach_r(type, lst) for (std::vector<type>::reverse_iterator it=lst.rbegin();it != lst.rend(); it++) |
|
#define | foreach_in_map(type, list) for (std::map<std::string,type>::iterator it=list.begin();it != list.end(); it++) |
|
#define | th_writelog(x) TheoraVideoManager::getSingleton().logMessage(x) |
|
#define foreach |
( |
|
type, |
|
|
|
lst |
|
) |
| for (std::vector<type>::iterator it=lst.begin();it != lst.end(); it++) |
#define foreach_in_map |
( |
|
type, |
|
|
|
list |
|
) |
| for (std::map<std::string,type>::iterator it=list.begin();it != list.end(); it++) |
#define foreach_l |
( |
|
type, |
|
|
|
lst |
|
) |
| for (std::list<type>::iterator it=lst.begin();it != lst.end(); it++) |
#define foreach_r |
( |
|
type, |
|
|
|
lst |
|
) |
| for (std::vector<type>::reverse_iterator it=lst.rbegin();it != lst.rend(); it++) |
void _psleep |
( |
int |
milliseconds | ) |
|
std::string strf |
( |
float |
i | ) |
|