source:
source/ariba/overlay/LinkDescriptor.cpp
Last change on this file was 5151, checked in by , 16 years ago | |
---|---|
File size: 296 bytes |
Line | |
---|---|
1 | #include "LinkDescriptor.h" |
2 | |
3 | namespace ariba { |
4 | namespace overlay { |
5 | |
6 | std::ostream& operator<<(std::ostream& s, const LinkDescriptor* ld ) { |
7 | return s << ld->to_string(); |
8 | } |
9 | |
10 | std::ostream& operator<<(std::ostream& s, const LinkDescriptor& ld ) { |
11 | return s << ld.to_string(); |
12 | } |
13 | |
14 | }} // ariba, overlay |
Note:
See TracBrowser
for help on using the repository browser.