time.h 123 B

123456789101112
  1. #ifndef BB_STD_TIME_H
  2. #define BB_STD_TIME_H
  3. namespace bbTime{
  4. double now();
  5. void sleep( double seconds );
  6. }
  7. #endif