-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstanceHandle.cpp
More file actions
41 lines (27 loc) · 829 Bytes
/
Copy pathInstanceHandle.cpp
File metadata and controls
41 lines (27 loc) · 829 Bytes
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
#include "BaseLib/InstanceHandle.h"
namespace BaseLib
{
InstanceHandle::InstanceHandle(InstanceHandleType handle)
: handle_(handle)
{
}
InstanceHandle::~InstanceHandle()
{
}
std::ostream &operator<<(std::ostream &ostr, const BaseLib::InstanceHandleSeq &handleSeq)
{
ostr << "(";
for(BaseLib::InstanceHandleSeq::const_iterator it = handleSeq.begin(), it_end = handleSeq.end(); it != it_end; ++it)
ostr << it->GetHandle() << ", ";
ostr << ")";
return ostr;
}
std::ostream &operator<<(std::ostream &ostr, const BaseLib::InstanceHandleSet &handleSeq)
{
ostr << "(";
for(BaseLib::InstanceHandleSet::const_iterator it = handleSeq.begin(), it_end = handleSeq.end(); it != it_end; ++it)
ostr << it->GetHandle() << ", ";
ostr << ")";
return ostr;
}
} // namespace BaseLib