ReduxLib C++ 2024.3.2
Loading...
Searching...
No Matches
Namespaces.h
1// Copyright (c) Redux Robotics and other contributors.
2// This is open source and can be modified and shared under the 3-clause BSD license.
3
4#pragma once
5
6// this header file exists to populate doxygen header files for each namespace that is used in more than one header file.
7// including this does nothing otherwise.
8
9/**
10 * Top-level ReduxLib namespace
11 */
12namespace redux {
13
14 /**
15 * Namespace holding base and utility classes for all CAN-based Redux Robotics devices
16 */
17 namespace canand {};
18
19 /**
20 * Namespace holding all classes relating to Redux sensors
21 */
22 namespace sensors {};
23
24 /**
25 * Namespace holding classes relating to device data frames
26 */
27 namespace frames {};
28
29}
Definition: Frame.h:15