00001 #include "vuSphLfFlt_All.h" 00002 00003 template <int SIZE, class TYPE> 00004 vuSphLfFlt_All<SIZE,TYPE>::vuSphLfFlt_All(const vuString& filterName) 00005 : vuSphericFilter<SIZE,TYPE>(filterName) 00006 { 00007 } 00008 00009 template <int S, class T> void vuSphLfFlt_All<S,T>:: 00010 calcFilteredViews(vuSphericView<S,T>**& views,dword& count) 00011 { 00012 CHECKNDELETE(views); 00013 00014 count = m_volume->getNumberOfViews(); 00015 views = new vuSphericView<S,T>*[count]; 00016 00017 for (dword i=0; i<count; i++) { 00018 views[i] = m_volume->getView(i); 00019 } 00020 } 00021