You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
590 B
29 lines
590 B
#pragma once
|
|
#include <fstream>
|
|
#include <functional>
|
|
#include <iostream>
|
|
#include <list>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "xsync_v2_sig_type.hpp"
|
|
|
|
//
|
|
|
|
namespace xsync {
|
|
|
|
uint32_t ipToUint32(const std::string &ipAddress, bool &suc);
|
|
string uint32ToIp(uint32_t ip);
|
|
|
|
XsyncTimecode_t timecode64ToXsyncTimeCode(Timecode64_t tc64);
|
|
Timecode64_t timecodeTo64(XsyncTimecode_t tc);
|
|
|
|
int64_t Xsync_GetTicket();
|
|
bool Xsync_feq(float a, float b, float epsilon = 0.0001);
|
|
|
|
}; // namespace xsync
|