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

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

using namespace std;

namespace vhc {

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

}