Chat-O-Matic/libs/libsupport/List.h

74 lines
1.1 KiB
C
Raw Normal View History

2010-05-07 11:54:04 -05:00
/*
* Copyright 2009-2010, Pier Luigi Fiorini. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _LIST_H
#define _LIST_H
#include <list>
#include <SupportDefs.h>
template<class T>
class List {
public:
uint32 CountItems() const;
void AddItem(T type);
void RemoveItemAt(uint32 position);
T ItemAt(uint32 position);
2010-05-07 11:54:04 -05:00
void AddList(List<T> appendList);
2010-05-07 11:54:04 -05:00
private:
std::list<T> fList;
typedef typename std::list<T>::iterator fIter;
};
template<class T>
uint32 List<T>::CountItems() const
{
return fList.size();
}
template<class T>
void List<T>::AddItem(T type)
{
fList.push_back(type);
2010-05-07 11:54:04 -05:00
}
template<class T>
void List<T>::RemoveItemAt(uint32 position)
{
2010-05-10 16:54:28 -05:00
fIter i = fList.begin();
2010-05-07 11:54:04 -05:00
std::advance(i, position);
fList.erase(i);
}
template<class T>
T List<T>::ItemAt(uint32 position)
{
fIter i = fList.begin();
std::advance(i, position);
return *i;
2010-05-07 11:54:04 -05:00
}
template<class T>
void List<T>::AddList(List<T> appendList)
{
if (appendList.CountItems() == 0)
return;
for (int i = 0; i < appendList.CountItems(); i++)
AddItem(appendList.ItemAt(i));
}
2010-05-07 11:54:04 -05:00
#endif // _LIST_H