Skip to content

Commit f1116c6

Browse files
fix generic driver header
Signed-off-by: Pascal Bauer <[email protected]>
1 parent e3a76f5 commit f1116c6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

common/include/villas/kernel/devices/generic_driver.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ class GenericDriver : public Driver {
4040
: path(path), bind_path(bind_path), unbind_path(unbind_path){};
4141

4242
public:
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

0 commit comments

Comments
 (0)