udev.h
Go to the documentation of this file.
1 
6 #include <string>
7 
8 namespace dpyUdev{
9 
16 class Udev
17 {
18 public:
19  Udev() = default;
20  virtual ~Udev() = default;
21  static bool getPropertyAsBoolean(std::string devicePath, std::string propertyName);
22 };
23 
24 }
Interact with udev.
Definition: udev.h:16
Definition: udev.h:8