#ifndef INPUTCONNECTION_H
#define INPUTCONNECTION_H
#include "FilterConnection.h"
template<class SAMPLE>
class InputConnection : private FilterConnection<SAMPLE> {
	public:	
		InputConnection(BufferedFile fd);
		InputConnection(BufferedFile fd,string name);
		~InputConnection();
		string InputConnection<SAMPLE>::xmlType();
		void process(); 
		bool writable();
};
#endif

