Initial commit.
This commit is contained in:
17
src/controller.cpp
Normal file
17
src/controller.cpp
Normal file
@ -0,0 +1,17 @@
|
||||
#include "controller.h"
|
||||
|
||||
void Controller::vol_up() {
|
||||
_player->vol_up();
|
||||
}
|
||||
|
||||
void Controller::vol_down() {
|
||||
_player->vol_down();
|
||||
}
|
||||
|
||||
void Controller::track_next() {
|
||||
_player->track_next();
|
||||
}
|
||||
|
||||
void Controller::track_prev() {
|
||||
_player->track_prev();
|
||||
}
|
Reference in New Issue
Block a user