blob: 10224a463ef55d38136a298e11e02155307eab4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "T2OuterObjList.h"
#include "T2OutObj.h"
T2OuterObjList::~T2OuterObjList() {
LArrayIterator iterator(*this);
T2OutObj *theOutObj;
while (iterator.Next(&theOutObj)) {
// do fuck all
}
}
|