add support for browsing local filesystem

This commit is contained in:
unK
2008-10-27 20:35:02 +01:00
parent e1202f2dfe
commit beee0bc9d3
15 changed files with 346 additions and 170 deletions

View File

@@ -82,6 +82,9 @@ class MPDConnection
bool Connected() const;
void Disconnect();
const string & GetHostname() { return MPD_HOST; }
int GetPort() { return MPD_PORT; }
void SetHostname(const string &);
void SetPort(int port) { MPD_PORT = port; }
void SetTimeout(int timeout) { MPD_TIMEOUT = timeout; }