summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Sluift/ITunesInterface.h')
-rw-r--r--Sluift/ITunesInterface.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/Sluift/ITunesInterface.h b/Sluift/ITunesInterface.h
index 8862966..075ab35 100644
--- a/Sluift/ITunesInterface.h
+++ b/Sluift/ITunesInterface.h
@@ -12,27 +12,27 @@
#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;
- boost::shared_ptr<Private> p;
- };
+ 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;
+ boost::shared_ptr<Private> p;
+ };
}