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.
43 lines
912 B
C++
43 lines
912 B
C++
/****************************************************************************
|
|
**
|
|
** Copyright (c) 2008-2015 C.B. Barber. All rights reserved.
|
|
** $Id: //main/2015/qhull/src/libqhullcpp/QhullStat.cpp#3 $$Change: 2066 $
|
|
** $DateTime: 2016/01/18 19:29:17 $$Author: bbarber $
|
|
**
|
|
****************************************************************************/
|
|
|
|
#//! QhullStat -- Qhull's global data structure, statT, as a C++ class
|
|
|
|
#include "libqhullcpp/QhullStat.h"
|
|
|
|
#include "libqhullcpp/QhullError.h"
|
|
|
|
#include <sstream>
|
|
#include <iostream>
|
|
|
|
using std::cerr;
|
|
using std::string;
|
|
using std::vector;
|
|
using std::ostream;
|
|
|
|
#ifdef _MSC_VER // Microsoft Visual C++ -- warning level 4
|
|
#endif
|
|
|
|
namespace orgQhull {
|
|
|
|
#//!\name Constructor, destructor, etc.
|
|
|
|
//! If qh_QHpointer==0, invoke with placement new on qh_stat;
|
|
QhullStat::
|
|
QhullStat()
|
|
{
|
|
}//QhullStat
|
|
|
|
QhullStat::
|
|
~QhullStat()
|
|
{
|
|
}//~QhullStat
|
|
|
|
}//namespace orgQhull
|
|
|