#include <ctype.h>#include <stdio.h>#include <stdlib.h>#include <fstream>#include <string>#include "SDL.h"#include <vrs/camera.h>#include <vrs/font.h>#include <vrs/opengl/lightmodelgl.h>#include <vrs/opengl/shapematerialgl.h>#include <vrs/opengl/transparencytechniquegl.h>#include <vrs/polygonset.h>#include <vrs/sg/behaviorcallback.h>#include <vrs/sg/canvas.h>#include <vrs/sg/key.h>#include <vrs/sg/keyevent.h>#include <vrs/sg/resizeevent.h>#include <vrs/text.h>#include <vrs/translation.h>#include "ResourceManager.h"#include "Console.h"Include dependency graph for Console.cpp:

Go to the source code of this file.
Namespaces | |
| namespace | random_racer |
Defines | |
| #define | iterateBackCyclic(BEGIN, END, ITERATOR) { if(ITERATOR-- == BEGIN) { ITERATOR = END; ITERATOR--; } } |
| #define | iterateForwardCyclic(BEGIN, END, ITERATOR) { if(++ITERATOR == END) ITERATOR = BEGIN; } |
| #define iterateBackCyclic | ( | BEGIN, | |||
| END, | |||||
| ITERATOR | ) | { if(ITERATOR-- == BEGIN) { ITERATOR = END; ITERATOR--; } } |
Definition at line 432 of file Console.cpp.
Referenced by random_racer::Console::tabCompleteForward().
| #define iterateForwardCyclic | ( | BEGIN, | |||
| END, | |||||
| ITERATOR | ) | { if(++ITERATOR == END) ITERATOR = BEGIN; } |
Definition at line 435 of file Console.cpp.
Referenced by random_racer::Console::tabCompleteForward().
1.5.1