packagepath.cpp
Go to the documentation of this file.
1#include "packagepath.h"
2
3#include <RobotAPI/libraries/aron/common/aron/PackagePath.aron.generated.h>
4
5/* PackagePath */
6
7void
8armarx::aron::packagepath::fromAron(const arondto::PackagePath& dto, PackagePath& bo)
9{
10 bo = {dto.package, dto.path};
11}
12
13void
14armarx::aron::packagepath::toAron(arondto::PackagePath& dto, const PackagePath& bo)
15{
16 const armarx::data::PackagePath icedto = bo.serialize();
17 dto.package = icedto.package;
18 dto.path = icedto.path;
19}
data::PackagePath serialize() const
void toAron(arondto::PackagePath &dto, const PackagePath &bo)
void fromAron(const arondto::PackagePath &dto, PackagePath &bo)