mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-27 12:52:07 +00:00
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.
This commit is contained in:
27
deps_src/qhull/src/libqhullcpp/QhullSets.h
Normal file
27
deps_src/qhull/src/libqhullcpp/QhullSets.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** 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
|
||||
Reference in New Issue
Block a user