28 lines
795 B
C
28 lines
795 B
C
|
/****************************************************************************
|
||
|
**
|
||
|
** Copyright (c) 2008-2020 C.B. Barber. All rights reserved.
|
||
|
** $Id: //main/2019/qhull/src/libqhullcpp/QhullSets.h#2 $$Change: 2953 $
|
||
|
** $DateTime: 2020/05/21 22:05:32 $$Author: bbarber $
|
||
|
**
|
||
|
****************************************************************************/
|
||
|
|
||
|
#ifndef QHULLSETS_H
|
||
|
#define QHULLSETS_H
|
||
|
|
||
|
#include "libqhullcpp/QhullSet.h"
|
||
|
|
||
|
namespace orgQhull {
|
||
|
|
||
|
//See: QhullFacetSet.h
|
||
|
//See: QhullPointSet.h
|
||
|
//See: QhullVertexSet.h
|
||
|
|
||
|
// Avoid circular references between QhullFacet, QhullRidge, and QhullVertex
|
||
|
class QhullRidge;
|
||
|
typedef QhullSet<QhullRidge> QhullRidgeSet;
|
||
|
typedef QhullSetIterator<QhullRidge> QhullRidgeSetIterator;
|
||
|
|
||
|
}//namespace orgQhull
|
||
|
|
||
|
#endif // QHULLSETS_H
|