00001 /************************************************************************ 00002 Algorithm.cpp - Copyright klank 00003 00004 00005 **************************************************************************/ 00006 00007 #include "Algorithm.h" 00008 #include "XMLTag.h" 00009 00010 00011 template<typename T> 00012 Algorithm<T>* Algorithm<T>::AlgFactory(XMLTag* tag) 00013 { 00014 return NULL; 00015 } 00016