00001 /**************************************************************************** 00002 ** 00003 ** Copyright (c) 2008-2011 C.B. Barber. All rights reserved. 00004 ** $Id: //main/2011/qhull/src/libqhullcpp/QhullSets.h#2 $$Change: 1342 $ 00005 ** $DateTime: 2011/03/07 21:55:47 $$Author: bbarber $ 00006 ** 00007 ****************************************************************************/ 00008 00009 #ifndef QHULLSETS_H 00010 #define QHULLSETS_H 00011 00012 #include "QhullSet.h" 00013 00014 namespace orgQhull { 00015 00016 //See: QhullFacetSet.h 00017 //See: QhullPointSet.h 00018 //See: QhullVertexSet.h 00019 00020 // Avoid circular references between QhullFacet, QhullRidge, and QhullVertex 00021 class QhullRidge; 00022 typedef QhullSet<QhullRidge> QhullRidgeSet; 00023 typedef QhullSetIterator<QhullRidge> QhullRidgeSetIterator; 00024 00025 }//namespace orgQhull 00026 00027 #endif // QHULLSETS_H