move functions from unnamed namespace to Browser class

This commit is contained in:
Andrzej Rybczak
2009-03-01 00:33:10 +01:00
parent aed227ab5f
commit 27535e133c
2 changed files with 61 additions and 53 deletions

View File

@@ -56,10 +56,14 @@ class Browser : public Screen< Menu<MPD::Item> >
void UpdateItemList();
protected:
void GetLocalDirectory(MPD::ItemList &);
static bool hasSupportedExtension(const std::string &);
static std::string ItemToString(const MPD::Item &, void *);
size_t itsScrollBeginning;
static const char *SupportedExtensions[];
size_t itsScrollBeginning;
std::string itsBrowsedDir;
};