YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
ICalibrator.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-FileCopyrightText: 2006-2010 RobotCub Consortium
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef YARP_DEV_ICALIBRATOR_H
8#define YARP_DEV_ICALIBRATOR_H
9
11
12namespace yarp::dev {
13
21{
22public:
23 virtual ~ICalibrator() = default;
24
25 virtual bool calibrate(DeviceDriver *dd) = 0;
26
27 virtual bool park(DeviceDriver *dd, bool wait = true) = 0;
28
29 virtual bool quitCalibrate() = 0;
30
31 virtual bool quitPark() = 0;
32};
33
34} // namespace yarp::dev
35
36#endif // YARP_DEV_ICALIBRATOR_H
Interface implemented by all device drivers.
Interface for a calibrator device.
Definition ICalibrator.h:21
virtual bool park(DeviceDriver *dd, bool wait=true)=0
virtual bool calibrate(DeviceDriver *dd)=0
virtual bool quitPark()=0
virtual bool quitCalibrate()=0
virtual ~ICalibrator()=default
For streams capable of holding different kinds of content, check what they actually have.
Definition jointData.cpp:13
#define YARP_dev_API
Definition api.h:18