Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:01:56

0001 /****************************************************************************
0002 **
0003 ** Copyright (c) 2008-2020 C.B. Barber. All rights reserved.
0004 ** $Id: //main/2019/qhull/src/libqhullcpp/QhullSets.h#2 $$Change: 2953 $
0005 ** $DateTime: 2020/05/21 22:05:32 $$Author: bbarber $
0006 **
0007 ****************************************************************************/
0008 
0009 #ifndef QHULLSETS_H
0010 #define QHULLSETS_H
0011 
0012 #include "libqhullcpp/QhullSet.h"
0013 
0014 namespace orgQhull {
0015 
0016     //See: QhullFacetSet.h
0017     //See: QhullPointSet.h
0018     //See: QhullVertexSet.h
0019 
0020     // Avoid circular references between QhullFacet, QhullRidge, and QhullVertex
0021     class QhullRidge;
0022     typedef QhullSet<QhullRidge>  QhullRidgeSet;
0023     typedef QhullSetIterator<QhullRidge>  QhullRidgeSetIterator;
0024 
0025 }//namespace orgQhull
0026 
0027 #endif // QHULLSETS_H