/**************************************************************************** ** ** 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 #include 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