mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
19 lines
254 B
C++
19 lines
254 B
C++
//
|
|
// TimeTypes.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 21/03/2018.
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef TimeTypes_h
|
|
#define TimeTypes_h
|
|
|
|
namespace Time {
|
|
|
|
typedef double Seconds;
|
|
|
|
}
|
|
|
|
#endif /* TimeTypes_h */
|