libtcspc C++ API
Streaming TCSPC and time tag data processing
Loading...
Searching...
No Matches
event.hpp
1/*
2 * This file is part of libtcspc
3 * Copyright 2019-2026 Board of Regents of the University of Wisconsin System
4 * SPDX-License-Identifier: MIT
5 */
6
7#pragma once
8
9namespace tcspc::internal {
10
11template <typename Event>
12concept abstime_stamped = requires { Event::abstime; };
13
14} // namespace tcspc::internal