/usr/include/libqhullcpp/QhullSets.h is in libqhull-dev 2012.1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | /****************************************************************************
**
** Copyright (c) 2008-2012 C.B. Barber. All rights reserved.
** $Id: //main/2011/qhull/src/libqhullcpp/QhullSets.h#3 $$Change: 1464 $
** $DateTime: 2012/01/25 22:58:41 $$Author: bbarber $
**
****************************************************************************/
#ifndef QHULLSETS_H
#define QHULLSETS_H
#include "QhullSet.h"
namespace orgQhull {
//See: QhullFacetSet.h
//See: QhullPointSet.h
//See: QhullVertexSet.h
// Avoid circular references between QhullFacet, QhullRidge, and QhullVertex
class QhullRidge;
typedef QhullSet<QhullRidge> QhullRidgeSet;
typedef QhullSetIterator<QhullRidge> QhullRidgeSetIterator;
}//namespace orgQhull
#endif // QHULLSETS_H
|