-
Notifications
You must be signed in to change notification settings - Fork 1
/
blTimerAPI.hpp
32 lines (22 loc) · 927 Bytes
/
blTimerAPI.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef BL_TIMERAPI_HPP
#define BL_TIMERAPI_HPP
//-------------------------------------------------------------------
// FILE: blTimerAPI.hpp
// CLASS: None
// BASE CLASS: None
//
// PURPOSE: A collection of data structures to facilitate
// the creation/use of timers running in parallel
// threads
//
// AUTHOR: Vincenzo Barbato
// http://www.barbatolabs.com
//-------------------------------------------------------------------
//-------------------------------------------------------------------
// A timer that runs on a parallel thread and invokes
// multiple user provided callbacks every user's specified
// "period" seconds
#include "blTimer.hpp"
//-------------------------------------------------------------------
#endif // BL_TIMERAPI_HPP