libevdevxx 0.5.0
A C++ wrapper for libevdev.
Loading...
Searching...
No Matches
SyncError.hpp
Go to the documentation of this file.
1/*
2 * libevdevxx - a C++ wrapper for libevdev
3 *
4 * Copyright (C) 2025 Daniel K. O.
5 * SPDX-License-Identifier: MIT
6 */
7
8#ifndef LIBEVDEVXX_SYNC_ERROR_HPP
9#define LIBEVDEVXX_SYNC_ERROR_HPP
10
11#include <stdexcept>
12
13#include "Event.hpp"
14
15
16namespace evdev {
17
18 struct SyncError : std::runtime_error {
19
21
23
24 };
25
26} // namespace evdev
27
28#endif
The namespace of libevdevxx.
Definition AbsInfo.hpp:18
Definition Event.hpp:28
SyncError(const Event &event)
Event event
Definition SyncError.hpp:20