Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Commit

Permalink
#48 Add missing includes for windows and osx updaters
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinDuquesnoy committed Jul 21, 2017
1 parent 091cb7d commit b319622
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/DI.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,14 @@
#include <MellowPlayer/Presentation/Notifications/Presenters/LibnotifyPresenter.hpp>
#endif

#ifdef Q_OS_LINUX
#include <MellowPlayer/Infrastructure/Platform/Linux/LinuxApplication.hpp>
#include <MellowPlayer/Infrastructure/Platform/Linux/MprisController.hpp>
#include <MellowPlayer/Infrastructure/Platform/Linux/Updater/LinuxUpdater.hpp>
#if defined(Q_OS_LINUX)
#include <MellowPlayer/Infrastructure/Platform/Linux/LinuxApplication.hpp>
#include <MellowPlayer/Infrastructure/Platform/Linux/MprisController.hpp>
#include <MellowPlayer/Infrastructure/Platform/Linux/Updater/LinuxUpdater.hpp>
#elif defined(Q_OS_WIN)
#include <MellowPlayer/Infrastructure/Platform/Windows/Updater/WindowsUpdater.hpp>
#elif defined(Q_OS_OSX)
#include <MellowPlayer/Infrastructure/Platform/OSX/Updater/OSXUpdater.hpp>
#endif

using namespace MellowPlayer::Application;
Expand Down

0 comments on commit b319622

Please sign in to comment.