1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-02-02 04:16:47 +01:00
2011-07-07 15:12:29 +00:00

16 lines
277 B
C++

#ifndef SPOTIFY_UTILITIES_H
#define SPOTIFY_UTILITIES_H
#include <QString>
namespace utilities {
// Get the path to the current user's local cache for all apps.
QString GetUserCacheDirectory();
// Get the path for Clementine's cache.
QString GetCacheDirectory();
}
#endif