Some fixes and added information regarding running the program

This commit is contained in:
amazing-username
2017-03-15 16:09:13 -05:00
parent 9e85a65aa9
commit 3649fbcb8d
5 changed files with 170 additions and 56 deletions
+3
View File
@@ -1,10 +1,12 @@
#ifndef BRIGHTNESS_H
#define BRIGHTNESS_H
#include <fstream>
class Brightness
{
public:
Brightness();
~Brightness();
void grabBrightness();
void grabMaxBrightness();
@@ -13,6 +15,7 @@ public:
static unsigned getMaxBrightness();
private:
std::ifstream* readBrightnessValues;
static unsigned currentBrightness;
static unsigned maxBrightness;
};