RobotsIO
Loading...
Searching...
No Matches
TestParameters.h
1/*
2 * Copyright (C) 2019 Istituto Italiano di Tecnologia (IIT)
3 *
4 * This software may be modified and distributed under the terms of the
5 * BSD 3-Clause license. See the accompanying LICENSE file for details.
6 */
7
8#include <RobotsIO/Utils/Parameters.h>
9#include <RobotsIO/Utils/ParametersExtractor.h>
10
12{
13public:
15
16 virtual ~TestParameters();
17
18 robots_io_accessor(TestParameters);
19
20 robots_io_declare_field(TestParameters, int, field0);
21
22 robots_io_declare_field(TestParameters, double, field1);
23
24 robots_io_declare_field(TestParameters, bool, field2);
25
26 robots_io_declare_std_field(TestParameters, string, field3);
27
28 robots_io_declare_std_field(TestParameters, size_t, field4);
29};