Using less bash scripting

This commit is contained in:
amazing-username
2017-04-09 18:38:36 -05:00
parent 6c66073004
commit fabcff4e05
14 changed files with 149 additions and 65 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef DECREASEVOLUME_H
#define DECREASEVOLUME_H
#include"Volume.h"
class DecreaseVolume : public Volume
{
public:
DecreaseVolume();
void updateVolume();
};
#endif