AuboStudio SDK
0.6.3
device_manager.h
浏览该文件的文档.
1
#ifndef AUBO_SCOPE_DEVICE_MANAGER_H
2
#define AUBO_SCOPE_DEVICE_MANAGER_H
3
4
#include <vector>
5
#include <
aubo_caps/domain/device/gripper_device.h
>
6
7
namespace
arcs
{
8
namespace
aubo_scope
{
9
ARCS_CLASS_FORWARD
(
DeviceManager
);
10
11
/**
12
* @ingroup ApplicationApi
13
* <p>
14
* Base interface for device managers.
15
* </p>
16
*
17
* A device manager provides functionality for a specific type of device
18
* supported by AuboScope. The device manager can provide functionality for,
19
* e.g. accessing all registered devices (of that type) and using a specific
20
* device in a program.
21
*/
22
class
ARCS_ABI_EXPORT
DeviceManager
23
{
24
public
:
25
virtual
~DeviceManager
() =
default
;
26
27
/**
28
* @return The list of grippers (gripper devices) available in AuboScope
29
*/
30
virtual
std::vector<GripperDevicePtr>
getGrippers
() = 0;
31
32
/**
33
* @return The list of grippers (gripper devices) available in AuboScope
34
*/
35
virtual
std::vector<DevicePtr>
getScrewDrivers
() = 0;
36
};
37
}
// namespace aubo_scope
38
}
// namespace arcs
39
40
#endif
ARCS_ABI_EXPORT
#define ARCS_ABI_EXPORT
定义
class_forward.h:16
ARCS_CLASS_FORWARD
#define ARCS_CLASS_FORWARD(C)
Macro that forward declares a class and defines the respective smartpointers through ARCS_DECLARE_PTR...
定义
class_forward.h:68
arcs::aubo_scope::DeviceManager
定义
device_manager.h:23
arcs::aubo_scope::DeviceManager::getGrippers
virtual std::vector< GripperDevicePtr > getGrippers()=0
arcs::aubo_scope::DeviceManager::getScrewDrivers
virtual std::vector< DevicePtr > getScrewDrivers()=0
arcs::aubo_scope::DeviceManager::~DeviceManager
virtual ~DeviceManager()=default
gripper_device.h
arcs::aubo_scope
定义
contribution_provider.h:8
arcs
定义
contribution_provider.h:7
include
aubo_caps
domain
device
device_manager.h
制作者
1.16.1