blob: 537c3f0a5bf3aaf72ec9f2c1d48b6a89230700c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#include "T2RouteCEArray.h"
T2RouteCEArray::T2RouteCEArray() {
}
/*virtual*/ T2RouteCEArray::~T2RouteCEArray() {
}
void T2RouteCEArray::Insert(unsigned int a, unsigned int b) {
if (a != 0) {
int index = FetchIndexOf(&a);
if (index != 0)
InsertItemsAt(1, index + 1, &b);
else
InsertItemsAt(1, 1, &b);
} else {
InsertItemsAt(1, 1, &b);
}
}
unsigned int T2RouteCEArray::GetSameID(T2RouteCEArray* other) {
unsigned int theSameID = 0;
LArrayIterator theLeftIterator(*this);
unsigned int theLeftReqID;
while (theLeftIterator.Next(&theLeftReqID)) {
LArrayIterator theRightIterator(*other);
unsigned int theRightReqID;
while (theRightIterator.Next(&theRightReqID)) {
if (theLeftReqID == theRightReqID) {
theSameID = theLeftReqID;
break;
}
}
}
return theSameID;
}
BOOL T2RouteCEArray::HasCrossEquip() const {
return GetCount() > 0;
}
|