Functioning

This commit is contained in:
amazing-username
2017-04-09 19:10:28 -05:00
parent fabcff4e05
commit 2b3718f5fd
9 changed files with 90 additions and 11 deletions
+2 -4
View File
@@ -14,15 +14,13 @@ int main(int argc, char* argv[])
if (action.compare("up") == 0)
{
IncreaseVolume iv;
//iv.setVolume(30);
std::cout << "Volume test: " << iv.getVolume() << std::endl;
//std::cout << "Volume test: " << iv.getVolume() << std::endl;
}
else if (action.compare("down") == 0)
{
DecreaseVolume dv;
//dv.setVolume(70);
std::cout << "Volume test: " << dv.getVolume() << std::endl;
//std::cout << "Volume test: " << dv.getVolume() << std::endl;
}
else
{