diff options
Diffstat (limited to 'Sluift/ITunesInterface.h')
-rw-r--r-- | Sluift/ITunesInterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sluift/ITunesInterface.h b/Sluift/ITunesInterface.h index d09982b..d44dcb1 100644 --- a/Sluift/ITunesInterface.h +++ b/Sluift/ITunesInterface.h @@ -1,40 +1,40 @@ /* * Copyright (c) 2014-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include <memory> #include <string> -#include <boost/optional/optional_fwd.hpp> +#include <boost/optional/optional.hpp> #include <Swiften/Base/API.h> namespace Swift { class SWIFTEN_API ITunesInterface { public: struct Track { std::string name; std::string artist; std::string album; long trackNumber; double duration; long rating; }; ITunesInterface(); virtual ~ITunesInterface(); boost::optional<Track> getCurrentTrack() const; private: bool haveApplication() const; private: struct Private; const std::unique_ptr<Private> p; }; } |