mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
23
Src/Wasabi/api/config/cfglist.h
Normal file
23
Src/Wasabi/api/config/cfglist.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef _CFGLIST_H
|
||||
#define _CFGLIST_H
|
||||
|
||||
#include <bfc/wasabi_std.h>
|
||||
#include <bfc/depview.h>
|
||||
#include <api/config/items/cfgitem.h>
|
||||
|
||||
class CfgList : public DependentViewerTPtr<CfgItem> {
|
||||
public:
|
||||
void addItem(CfgItem *cfgitem);
|
||||
void delItem(CfgItem *cfgitem);
|
||||
|
||||
int getNumItems();
|
||||
CfgItem *enumItem(int n);
|
||||
CfgItem *getByGuid(GUID g);
|
||||
|
||||
virtual int viewer_onItemDeleted(CfgItem *item);
|
||||
|
||||
private:
|
||||
PtrList<CfgItem> list;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user