Add DPI feature

This commit is contained in:
pixl
2020-07-02 03:34:14 -04:00
parent f6b93b94af
commit 07b8fc1af4
7 changed files with 199 additions and 14 deletions
+4 -3
View File
@@ -19,6 +19,8 @@
#ifndef LOGID_FEATURES_DEVICEFEATURE_H
#define LOGID_FEATURES_DEVICEFEATURE_H
#include <string>
namespace logid {
class Device;
namespace features
@@ -38,11 +40,10 @@ namespace features
{
}
protected:
virtual const std::string configPath() = 0;
Device* _device;
std::string root_setting;
};
private:
protected:
Device* _device;
};
}}