usb: getting string descriptors, minor improvements
[quarnos.git] / services / time_source.h
blob8422bc383b89e9454ae20c25c33b795e79a7a39b
1 #ifndef _TIME_SOURCE_H_
2 #define _TIME_SOURCE_H_
4 namespace services {
5 class time_source {
6 public:
7 typedef unsigned int time_stamp;
8 virtual time_stamp get_timestamp() = 0;
9 };
12 #endif