mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-09 10:16:50 +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:
49
deps_src/qhull/src/libqhullcpp/QhullStat.h
Normal file
49
deps_src/qhull/src/libqhullcpp/QhullStat.h
Normal file
@@ -0,0 +1,49 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (c) 2008-2015 C.B. Barber. All rights reserved.
|
||||
** $Id: //main/2015/qhull/src/libqhullcpp/QhullStat.h#2 $$Change: 2079 $
|
||||
** $DateTime: 2016/02/07 17:43:34 $$Author: bbarber $
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef QHULLSTAT_H
|
||||
#define QHULLSTAT_H
|
||||
|
||||
#include "libqhull_r/qhull_ra.h"
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace orgQhull {
|
||||
|
||||
#//!\name defined here
|
||||
//! QhullStat -- Qhull's statistics, qhstatT, as a C++ class
|
||||
//! Statistics defined with zzdef_() control Qhull's behavior, summarize its result, and report precision problems.
|
||||
class QhullStat;
|
||||
|
||||
class QhullStat : public qhstatT {
|
||||
|
||||
private:
|
||||
#//!\name Fields (empty) -- POD type equivalent to qhstatT. No data or virtual members
|
||||
|
||||
public:
|
||||
#//!\name Constants
|
||||
|
||||
#//!\name class methods
|
||||
|
||||
#//!\name constructor, assignment, destructor, invariant
|
||||
QhullStat();
|
||||
~QhullStat();
|
||||
|
||||
private:
|
||||
//!disable copy constructor and assignment
|
||||
QhullStat(const QhullStat &);
|
||||
QhullStat & operator=(const QhullStat &);
|
||||
public:
|
||||
|
||||
#//!\name Access
|
||||
};//class QhullStat
|
||||
|
||||
}//namespace orgQhull
|
||||
|
||||
#endif // QHULLSTAT_H
|
||||
Reference in New Issue
Block a user