Files
OrcaSlicer/deps_src/qhull/src/libqhullcpp/QhullSets.h
SoftFever 883607e1d4 Refactor folder (#10475)
Move many third-party components' source codes from the src folder to a new folder called deps_src. The goal is to make the code structure clearer and easier to navigate.
2025-08-22 20:02:26 +08:00

28 lines
795 B
C++

/****************************************************************************
**
** Copyright (c) 2008-2015 C.B. Barber. All rights reserved.
** $Id: //main/2015/qhull/src/libqhullcpp/QhullSets.h#2 $$Change: 2066 $
** $DateTime: 2016/01/18 19:29:17 $$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