DataMode.h
Go to the documentation of this file.
1#pragma once
2
4{
5
6 enum class DataMode
7 {
8 NoData, ///< Just get the structure, but no ARON data.
9 WithData, ///< Get structure and ARON data.
10 };
11
12 DataMode boolToDataMode(bool withData);
13} // namespace armarx::armem::query
@ WithData
Get structure and ARON data.
Definition DataMode.h:9
@ NoData
Just get the structure, but no ARON data.
Definition DataMode.h:8
DataMode boolToDataMode(bool withData)
Definition DataMode.cpp:6