AuboCaps  0.6.0
base_feature.h
Go to the documentation of this file.
1 #ifndef AUBO_SCOPE_BASE_FEATURE_H
2 #define AUBO_SCOPE_BASE_FEATURE_H
3 
5 
6 namespace arcs {
7 namespace aubo_scope {
8 ARCS_CLASS_FORWARD(BaseFeature);
9 
10 /**
11  * This interface represents the Base feature in AuboScope.
12  */
14 {
15 public:
18  virtual ~BaseFeature();
19 
20 private:
21  friend class DataSwitch;
22  BaseFeature();
23  void *d_{ nullptr };
24 };
25 
26 } // namespace aubo_scope
27 } // namespace arcs
28 
29 #endif // AUBO_SCOPE_BASE_FEATURE_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 Base feature in AuboScope.
Definition: base_feature.h:13