fix includes

This commit is contained in:
badaix 2019-10-13 13:18:24 +02:00
parent 13c6f4a99f
commit d3b8ad5aa5
11 changed files with 11 additions and 18 deletions

View file

@ -19,7 +19,7 @@
#ifndef CONTROLLER_H
#define CONTROLLER_H
#include "decoder/decoder.h"
#include "decoder/decoder.hpp"
#include "message/message.h"
#include "message/serverSettings.h"
#include "message/streamTags.h"
@ -29,9 +29,9 @@
#ifdef HAS_ALSA
#include "player/alsa_player.hpp"
#elif HAS_OPENSL
#include "player/openslPlayer.h"
#include "player/opensl_player.hpp"
#elif HAS_COREAUDIO
#include "player/coreAudioPlayer.h"
#include "player/coreaudio_player.hpp"
#endif
#include "client_connection.hpp"
#include "metadata.hpp"