#include "OutputConnection.h"
template<class SAMPLE> 
OutputConnection<SAMPLE>::OutputConnection<SAMPLE>(BufferedFile fd): FilterConnection<SAMPLE>::inConnections() {
	init(fd,"Unnamed");
	initBuffer();
}
template<class SAMPLE> 
OutputConnection<SAMPLE>::OutputConnection<SAMPLE>(BufferedFile fd,string name): FilterConnection<SAMPLE>::inConnections() {
	init(fd,name);
	initBuffer();
}
template<class SAMPLE> 
OutputConnection<SAMPLE>::~OutputConnection<SAMPLE>() {
	destruct();
}
template<class SAMPLE> 
bool OutputConnection<SAMPLE>::readable() {
	return false;
}
template<class SAMPLE> 
string  OutputConnection<SAMPLE>::xmlType() { //gets an XML string 
	return "OUTPUT";
}
