2011-07-07 14:54:22 +00:00
|
|
|
#ifndef SPOTIFY_UTILITIES_H
|
|
|
|
#define SPOTIFY_UTILITIES_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
namespace utilities {
|
|
|
|
|
2011-07-07 15:12:29 +00:00
|
|
|
// Get the path to the current user's local cache for all apps.
|
|
|
|
QString GetUserCacheDirectory();
|
|
|
|
// Get the path for Clementine's cache.
|
2011-07-07 14:54:22 +00:00
|
|
|
QString GetCacheDirectory();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|