mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 17:16:14 +03:00
17 lines
290 B
C++
17 lines
290 B
C++
//
|
|
// Copyright(c) 2016-2017 benikabocha.
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
//
|
|
|
|
#ifndef SABA_BASE_TIME_H_
|
|
#define SABA_BASE_TIME_H_
|
|
|
|
namespace saba
|
|
{
|
|
double GetTime();
|
|
double GetTimeMSec();
|
|
double GetTimeUSec();
|
|
}
|
|
|
|
#endif // !SABA_BASE_TIME_H_
|