mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-12 06:52:57 +00:00
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.
28 lines
795 B
C++
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
|