时间戳处理新增接口支持获取相对时间戳

This commit is contained in:
xiongziliang
2023-03-22 21:18:46 +08:00
parent e08bb73604
commit dfd37ff350
2 changed files with 12 additions and 0 deletions

View File

@@ -28,9 +28,12 @@ public:
* @return 时间戳增量
*/
int64_t deltaStamp(int64_t stamp);
int64_t relativeStamp(int64_t stamp);
int64_t relativeStamp();
private:
int64_t _last_stamp = 0;
int64_t _relative_stamp = 0;
};
//该类解决时间戳回环、回退问题