mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-08 02:27:30 +02:00
18 lines
292 B
C++
18 lines
292 B
C++
//
|
|
// SharedUtil.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 2/22/13.
|
|
//
|
|
//
|
|
|
|
#ifndef __hifi__SharedUtil__
|
|
#define __hifi__SharedUtil__
|
|
|
|
#include <iostream>
|
|
#include <sys/time.h>
|
|
|
|
double usecTimestamp(timeval *time);
|
|
double usecTimestampNow();
|
|
|
|
#endif /* defined(__hifi__SharedUtil__) */
|