summaryrefslogtreecommitdiff
path: root/src/main/Printable.cc
blob: c4c69d5c6466243c5cbe70dcab39e7e895286f81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Printable.cc
 *
 *  Created on: Mar 16, 2011
 *      Author: jakob
 */

#include "Printable.h"
#include <iostream>

namespace vhc {

//c.f. header
std::ostream& operator<< (std::ostream& output, const Printable& p) {
	output << p.toString();
	return output;
}

}