libbgp  0.6
A C++ BGP Library.
realtime-clock.h
Go to the documentation of this file.
1 
11 #ifndef REALTIME_CLOCK_H_
12 #define REALTIME_CLOCK_H_
13 #include "clock.h"
14 
15 namespace libbgp {
16 
22 class RealtimeClock : public Clock {
23 public:
24  uint64_t getTime() const;
25 };
26 
27 }
28 
29 #endif // REALTIME_CLOCK_H_
The libbgp clock interface.
The RealtimeClock class.
Definition: bgp-afi.h:14
uint64_t getTime() const
Get the current time.
The Clock interface.
Definition: clock.h:31