mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
34 lines
672 B
C++
34 lines
672 B
C++
#ifndef __WILDCHARSENUM_H
|
|
#define __WILDCHARSENUM_H
|
|
|
|
#include <bfc/ptrlist.h>
|
|
#include <bfc/string/StringW.h>
|
|
|
|
class find_entry {
|
|
public:
|
|
find_entry(const wchar_t *_path, const wchar_t *_filename) : path(_path), filename(_filename) {}
|
|
~find_entry() {}
|
|
StringW path;
|
|
StringW filename;
|
|
};
|
|
|
|
class WildcharsEnumerator
|
|
{
|
|
public:
|
|
WildcharsEnumerator(const wchar_t *_selection);
|
|
virtual ~WildcharsEnumerator();
|
|
|
|
int getNumFiles();
|
|
const wchar_t *enumFile(int n);
|
|
void rescan();
|
|
|
|
static int isWildchars(const wchar_t *filename);
|
|
|
|
private:
|
|
StringW selection;
|
|
PtrList <find_entry> finddatalist;
|
|
StringW singfiledup;
|
|
StringW enumFileString;
|
|
};
|
|
|
|
#endif
|