Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111180629
QhullStat.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Apr 30, 01:36
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, May 2, 01:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25889367
Attached To
rCADDMESH CADD_mesher
QhullStat.h
View Options
/****************************************************************************
**
** Copyright (c) 2008-2012 C.B. Barber. All rights reserved.
** $Id: //main/2011/qhull/src/libqhullrcpp/QhullStat.h#1 $$Change: 1640 $
** $DateTime: 2014/01/15 09:12:08 $$Author: bbarber $
**
****************************************************************************/
#ifndef QHULLSTAT_H
#define QHULLSTAT_H
extern "C" {
#include "libqhull/qhull_a.h"
}
#include <string>
#include <vector>
namespace orgQhull {
#//defined here
//! QhullStat -- Qhull's statistics, qhstatT, as a C++ class
//! Statistics defined with zzdef_() control Qhull's behavior, summarize its result, and report precision problems.
class QhullStat;
class QhullStat : public qhstatT {
private:
#//Fields (empty) -- POD type equivalent to qhstatT. No data or virtual members
public:
#//Constants
#//class methods
static void clearStatistics();
#//constructor, assignment, destructor, invariant
QhullStat();
~QhullStat();
private:
//!disable copy constructor and assignment
QhullStat(const QhullStat &);
QhullStat &operator=(const QhullStat &);
public:
#//Access
};//class QhullStat
}//namespace orgQhull
#endif // QHULLSTAT_H
Event Timeline
Log In to Comment