#include "Display.h"
#include <cstdlib>
#include <cmath>
#include "Constants.h"
#include "Accum.h"
#include "Jitter.h"
Go to the source code of this file.
Functions | |
void | display_timer (int value) |
Call the timer method of the Display instance. |
Definition in file Display.cpp.
void display_timer | ( | int | value | ) |
Call the timer method of the Display instance.
value | (unused) |
Definition at line 39 of file Display.cpp.
References Display::instance(), and Display::timer().
Referenced by Display::Display(), Display::inputKey(), and Display::timer().
00039 { 00040 Display::instance()->timer(value); 00041 }