Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #//! QhullStat -- Qhull's global data structure, statT, as a C++ class
00010
00011
00012 #include "QhullError.h"
00013 #include "QhullStat.h"
00014
00015 #include <sstream>
00016 #include <iostream>
00017
00018 using std::cerr;
00019 using std::string;
00020 using std::vector;
00021 using std::ostream;
00022
00023 #ifdef _MSC_VER // Microsoft Visual C++ -- warning level 4
00024 #endif
00025
00026 namespace orgQhull {
00027
00028 #//Constructor, destructor, etc.
00029
00031 QhullStat::
00032 QhullStat()
00033 {
00034 }
00035
00036 QhullStat::
00037 ~QhullStat()
00038 {
00039 }
00040
00041 }
00042