blob: 69bb2ad623cb2dd00a5c97accfc83f3161d57636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef T2DLL_T2MATTERARRAYLIST_H
#define T2DLL_T2MATTERARRAYLIST_H
#include "../common.h"
#include "LArray.h"
class AFX_CLASS_EXPORT T2MatterArrayList : public LArray {
public:
T2MatterArrayList();
virtual ~T2MatterArrayList();
void Add(T2MatterArray* inArray);
unsigned int GetItemCount();
T2MatterArray* GetItemAt(long inIndex);
T2Matter* FindUnusedMatter(unsigned int inJobType, unsigned int inValidRange);
};
#endif
|