gmsh-TingyuanDoc  0.1
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
materialLaw.h
Go to the documentation of this file.
1 // Gmsh - Copyright (C) 1997-2022 C. Geuzaine, J.-F. Remacle
2 //
3 // See the LICENSE.txt file in the Gmsh root directory for license information.
4 // Please report all issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
5 //
6 // Contributor(s):
7 // Eric Bechet
8 //
9 
10 #ifndef MATERIALLAW_H
11 #define MATERIALLAW_H
12 
13 class Material {
14 public:
15  virtual ~Material() {}
16 };
17 
18 #endif //_MATERIALLAW_H_
Material::~Material
virtual ~Material()
Definition: materialLaw.h:15
Material
Definition: materialLaw.h:13