HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
cpu_utc_clock.hpp
1// Distributed under the Boost Software License, Version 1.0.
2// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
3
4#pragma once
5
6#include "hires_utc_clock.hpp"
7#include "cpu_counter_clock.hpp"
8#include "sync_clock.hpp"
9
10namespace tt {
11
12using cpu_utc_clock = sync_clock<hires_utc_clock,cpu_counter_clock>;
13
14}