/usr/include/psurface/GmshIO.h is in libpsurface-dev 2.0.0-2+b1.
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 | #ifndef GMSHIO_H
#define GMSHIO_H
#include <string>
namespace psurface{
template<class ctype,int dim>
class GmshIO{
static void readfile(FILE * file, int cnt, const char* format,
void* t1, void* t2 = 0, void* t3 = 0, void* t4 = 0,
void* t5 = 0, void* t6 = 0, void* t7 = 0, void* t8 = 0,
void* t9 = 0, void* t10 = 0);
static void skipline(FILE * file);
public:
/// Reads the parametrization of psurface from Gmsh object
static PSurface<dim, ctype>* readGmsh(const std::string& filename);
};
} // namespace psurface
#endif
|