source: source/ariba/overlay/LinkDescriptor.cpp@ 12438

Last change on this file since 12438 was 5151, checked in by Christoph Mayer, 15 years ago

begin merge back from relay branch

File size: 296 bytes
Line 
1#include "LinkDescriptor.h"
2
3namespace ariba {
4namespace overlay {
5
6std::ostream& operator<<(std::ostream& s, const LinkDescriptor* ld ) {
7 return s << ld->to_string();
8}
9
10std::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.