1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-19 02:22:39 +00:00

Shorten declarations.

This commit is contained in:
Thomas Harte
2025-12-04 23:15:26 -05:00
parent bdfb9c0684
commit fffbbb55f7
+3 -3
View File
@@ -46,7 +46,7 @@ public:
/*!
Advances the event loop by @c number_of_cycles cycles.
*/
void run_for(const Cycles cycles);
void run_for(const Cycles);
/*!
@returns the number of whole cycles remaining until the next event is triggered.
@@ -69,8 +69,8 @@ protected:
/*!
Sets the time interval, as a proportion of a second, until the next event should be triggered.
*/
void set_next_event_time_interval(Time interval);
void set_next_event_time_interval(float interval);
void set_next_event_time_interval(Time);
void set_next_event_time_interval(float);
/*!
Communicates that the next event is triggered. A subclass will idiomatically process that event