|
||||
File indexing completed on 2025-01-18 10:01:56
0001 /**************************************************************************** 0002 ** 0003 ** Copyright (c) 2008-2020 C.B. Barber. All rights reserved. 0004 ** $Id: //main/2019/qhull/src/libqhullcpp/QhullStat.h#2 $$Change: 2953 $ 0005 ** $DateTime: 2020/05/21 22:05:32 $$Author: bbarber $ 0006 ** 0007 ****************************************************************************/ 0008 0009 #ifndef QHULLSTAT_H 0010 #define QHULLSTAT_H 0011 0012 #include "libqhull_r/qhull_ra.h" 0013 0014 #include <string> 0015 #include <vector> 0016 0017 namespace orgQhull { 0018 0019 #//!\name defined here 0020 //! QhullStat -- Qhull's statistics, qhstatT, as a C++ class 0021 //! Statistics defined with zzdef_() control Qhull's behavior, summarize its result, and report precision problems. 0022 class QhullStat; 0023 0024 class QhullStat : public qhstatT { 0025 0026 private: 0027 #//!\name Fields (empty) -- POD type equivalent to qhstatT. No data or virtual members 0028 0029 public: 0030 #//!\name Constants 0031 0032 #//!\name class methods 0033 0034 #//!\name constructor, assignment, destructor, invariant 0035 QhullStat(); 0036 ~QhullStat(); 0037 0038 private: 0039 //!disable copy constructor and assignment 0040 QhullStat(const QhullStat &); 0041 QhullStat & operator=(const QhullStat &); 0042 public: 0043 0044 #//!\name Access 0045 };//class QhullStat 0046 0047 }//namespace orgQhull 0048 0049 #endif // QHULLSTAT_H
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |