Page Speed Optimization Libraries  1.9.32.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
apr_timer.h
Go to the documentation of this file.
1 // Copyright 2010 Google Inc.
17 
18 #ifndef NET_INSTAWEB_APACHE_APR_TIMER_H_
19 #define NET_INSTAWEB_APACHE_APR_TIMER_H_
20 
22 
24 
25 using net_instaweb::Timer;
26 
27 namespace net_instaweb {
28 
29 class AprTimer : public Timer {
30  public:
31  virtual ~AprTimer();
32  virtual int64 NowUs() const;
33  virtual void SleepUs(int64 us);
34 };
35 
36 }
37 
38 #endif
Definition: apr_timer.h:29