AuboCaps  0.6.0
feature_tool.h
Go to the documentation of this file.
1 #ifndef AUBO_SCOPE_FEATURE_TOOL_H
2 #define AUBO_SCOPE_FEATURE_TOOL_H
3 
5 
6 namespace arcs {
7 namespace aubo_scope {
8 ARCS_CLASS_FORWARD(FeatureTool);
9 
10 /**
11  * This interface represents the Tool feature in AuboScope.
12  */
14 {
15 public:
18  virtual ~FeatureTool();
19 
20 private:
21  friend class DataSwitch;
22  FeatureTool();
23  void *d_{ nullptr };
24 };
25 
26 } // namespace aubo_scope
27 } // namespace arcs
28 
29 #endif // AUBO_SCOPE_FEATURE_TOOL_H
ARCS_CLASS_FORWARD(GripForceCapability)
This base interface represents all types of features available in AuboScope.
Definition: feature.h:15
#define ARCS_ABI_EXPORT
Definition: class_forward.h:16
This interface represents the Tool feature in AuboScope.
Definition: feature_tool.h:13