#ifndef OUTPUTCONNECTION_H
#define OUTPUTCONNECTION_H
#include "FilterConnection.h"
template<class SAMPLE>
class OutputConnection : public FilterConnection<SAMPLE> {
	public:	
		bool readable();
		~OutputConnection();
		string xmlType();  //return OUTPUT
		OutputConnection(BufferedFile fd);
		OutputConnection(BufferedFile fd,string name);
	private:
};
#endif

