1 |
// Library |
2 |
// |
3 |
// Douglas Thrift |
4 |
// |
5 |
// $Id$ |
6 |
|
7 |
#ifndef _Library_hpp_ |
8 |
#define _Library_hpp_ |
9 |
|
10 |
#include <menes/platform.hpp> |
11 |
|
12 |
#ifndef MENES_PRAGMA_ONCE |
13 |
#pragma once |
14 |
#endif |
15 |
|
16 |
#include "MediaFolder.hpp" |
17 |
|
18 |
class Library |
19 |
{ |
20 |
private: |
21 |
mutable _R<dbi::Connection> connection; |
22 |
public: |
23 |
Library(const _R<dbi::Connection>& connection); |
24 |
_L<cse::String> GetArtists() const; |
25 |
_L<cse::String> GetTitles() const; |
26 |
_L<cse::String> GetAlbums() const; |
27 |
_L<cse::String> GetGenres() const; |
28 |
_L<MediaFolder> GetFolders() const; |
29 |
_finline MediaFolder GetFolder(const api::Path& path) const { return MediaFolder(connection, path); } |
30 |
_finline MediaFile GetFile(const api::Path& path) const { return MediaFile(connection, path); } |
31 |
}; |
32 |
|
33 |
#endif//_Library_hpp_ |