names.cpp
Go to the documentation of this file.
1#include "names.h"
2
3#include <RobotAPI/libraries/aron/common/aron/Names.aron.generated.h>
5
6void
7armarx::fromAron(const arondto::Names& dto, Names& bo)
8{
9 bo.recognized = dto.recognized;
10 bo.spoken = dto.spoken;
11}
12
13void
14armarx::toAron(arondto::Names& dto, const Names& bo)
15{
16 dto.recognized = bo.recognized;
17 dto.spoken = bo.spoken;
18}
void toAron(arondto::PackagePath &dto, const PackageFileLocation &bo)
void fromAron(const arondto::PackagePath &dto, PackageFileLocation &bo)
std::vector< std::string > spoken
Definition Names.h:12
std::vector< std::string > recognized
Definition Names.h:11