OGS
GMSHPoint.h
Go to the documentation of this file.
1
12#pragma once
13
14// GeoLib
15#include "GeoLib/Point.h"
16
17namespace FileIO
18{
19namespace GMSH
20{
21class GMSHPoint final : public GeoLib::Point
22{
23public:
24 GMSHPoint(GeoLib::Point const& pnt, std::size_t id, double mesh_density);
25 void write(std::ostream& os) const;
26
27private:
29};
30
32std::ostream& operator<< (std::ostream &os, GMSHPoint const& p);
33
34} // end namespace GMSH
35} // end namespace FileIO
Definition of the Point class.
GMSHPoint(GeoLib::Point const &pnt, std::size_t id, double mesh_density)
Definition GMSHPoint.cpp:21
void write(std::ostream &os) const
Definition GMSHPoint.cpp:27
static std::ostream & operator<<(std::ostream &os, std::vector< GMSHPoint * > const &points)