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