1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef sync_time_helper_h
- #define sync_time_helper_h
- #include <fstream>
- using namespace std;
- namespace host_server{
- class sync_helper
- {
- public:
-
-
-
-
-
-
- static long long parse_time(const char *time);
-
-
-
-
-
-
-
- static unsigned long long parse_id(unsigned int id, unsigned char antNum);
-
-
-
-
-
-
-
- static unsigned long long parse_from_fstream(ifstream &f, int size);
-
-
-
-
-
-
- static unsigned long long parse_time_from_fstream(ifstream &f);
- };
- }
- #endif
|