예제 #1
0
파일: time.hpp 프로젝트: VicHao/fc
 time_point_sec operator = ( const fc::time_point& t )
 {
   utc_seconds = t.time_since_epoch().count() / 1000000ll;
   return *this;
 }
예제 #2
0
 void set_time_point(const fc::time_point& t) {
    auto micro_since_epoch = t.time_since_epoch();
    auto msec_since_epoch  = micro_since_epoch.count() / 1000;
    slot = ( msec_since_epoch - EpochMs ) / IntervalMs;
 }
예제 #3
0
파일: raw.hpp 프로젝트: dbarobin/steem
 inline void pack( Stream& s, const fc::time_point& tp )
 {
    uint64_t usec = tp.time_since_epoch().count();
    s.write( (const char*)&usec, sizeof(usec) );
 }