libbgp  0.6
A C++ BGP Library.
realtime-clock.cc
Go to the documentation of this file.
1 
11 #include "realtime-clock.h"
12 #include <time.h>
13 
14 namespace libbgp {
15 
16 uint64_t RealtimeClock::getTime() const {
17  return time(NULL);
18 }
19 
20 }
A Clock implementation to use system time as time.
Definition: bgp-afi.h:14
uint64_t getTime() const
Get the current time.