initiaql check-in, moved repository -- no-longer a fork of

haikuarchives/yab
This commit is contained in:
Jim
2015-04-13 13:40:27 -07:00
parent 9e266ef95f
commit 3e33065a02
234 changed files with 77847 additions and 1 deletions

27
src/YabList.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef YABLIST_H
#define YABLIST_H
#include <String.h>
#include <View.h>
class YabList
{
public:
YabList();
~YabList();
void AddView(const char* id, const BView* view, int type);
void DelView(const char* id);
void DelAll();
const void* GetView(const char* id);
const int GetType(const char* id);
const int CountItems();
const void* ItemAt(int i);
void PrintOut();
private:
int ViewNum(const char* id);
BList* idList;
BList* viewList;
BList* typeList;
};
#endif