Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef QHULLSTAT_H
00010 #define QHULLSTAT_H
00011
00012 extern "C" {
00013 #include "libqhull/qhull_a.h"
00014 }
00015
00016 #include <string>
00017 #include <vector>
00018
00019 namespace orgQhull {
00020
00021 #//defined here
00022
00023
00024 class QhullStat;
00025
00026 class QhullStat : public qhstatT {
00027
00028 private:
00029 #//Fields (empty) -- POD type equivalent to qhstatT. No data or virtual members
00030
00031 public:
00032 #//Constants
00033
00034 #//class methods
00035 static void clearStatistics();
00036
00037 #//constructor, assignment, destructor, invariant
00038 QhullStat();
00039 ~QhullStat();
00040
00041 private:
00043 QhullStat(const QhullStat &);
00044 QhullStat &operator=(const QhullStat &);
00045 public:
00046
00047 #//Access
00048 };
00049
00050 }
00051
00052 #endif // QHULLSTAT_H