//***********************************************************************
//** MaxflowTemplates.cc : **********************************************
//**                      Instantiate the new templates involving *******
//**			  FlowInfo objects. (g++)   		  *******
//***********************************************************************
#ifdef __GNUC__			// include .h *and* .cc files (automatic)
#define DEFINE_TEMPLATE		// template definitions must come 
#include <LINK/basic/List.h>	// **before** any other includes
#include <LINK/basic/Set.h>	// 
#undef  DEFINE_TEMPLATE

#include "ProgFlowInfo.h"

template class Iterator<FlowInfo>;
template class Container<FlowInfo>;
template class SimpleContainer<FlowInfo>;
template class Collection<FlowInfo>;
template class MSetBase<FlowInfo, SortedList<FlowInfo> >; 
template class SetBase<FlowInfo, SortedList<FlowInfo> >;
template class Set<FlowInfo>;
template class List<FlowInfo>;
template class SortedList<FlowInfo>;

#endif
