DataMode.cpp
Go to the documentation of this file.
1#include "DataMode.h"
2
4{
6 boolToDataMode(bool withData)
7 {
8 return withData ? DataMode::WithData : DataMode::NoData;
9 }
10} // 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