File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
common/include/villas/kernel/devices Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,11 @@ class GenericDriver : public Driver {
4040 : path(path), bind_path(bind_path), unbind_path(unbind_path){};
4141
4242public:
43- virtual void attach (const Device &device) const = 0 ;
44- virtual void bind (const Device &device) const = 0 ;
45- virtual std::string name () const = 0 ;
46- virtual void override (const Device &device) const = 0 ;
47- virtual void unbind (const Device &device) const = 0 ;
43+ void attach (const Device &device) const override ;
44+ void bind (const Device &device) const override ;
45+ std::string name () const override ;
46+ void override (const Device &device) const override ;
47+ void unbind (const Device &device) const override ;
4848};
4949
5050} // namespace devices
You can’t perform that action at this time.
0 commit comments