summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2OuterObjList.cpp
blob: cbd254546137b644f9e8067a44189ab61bfb66d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "StdAfx.h"
#include "T2OuterObjList.h"
#include "T2OutObj.h"

T2OuterObjList::~T2OuterObjList() {
    LArrayIterator iterator(*this);
    T2OutObj *theOutObj;

    while (iterator.Next(&theOutObj)) {
        // do fuck all
    }
}