sdi_toolBox
defs.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2026 - SD-Innovation S.A.S. - FRANCE
3*/
4
5/*
6ver: 2.x.x - build: 2026-04-28
7*/
8
9/*
10The zlib License Copyright (c) 2026 SD-Innovation S.A.S. This software is provided ‘as-is’, without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution.
11*/
12
13#pragma once
14
15#include <chrono>
16#include <cstdint>
17
18//--------------------------------------------------------------
20{
21using MessageTypeID = uint64_t;
22using TimePoint = std::chrono::steady_clock::time_point;
23//--------------------------------------------------------------
24} // namespace sdi_toolBox::desktop::eventBus
Lightweight thread-safe event bus for decoupled message passing.
Definition bus.h:27
uint64_t MessageTypeID
Unique identifier for a message type.
Definition defs.h:21
std::chrono::steady_clock::time_point TimePoint
Monotonic timestamp type used throughout the event bus.
Definition defs.h:22