mirror of
https://git.gfz-potsdam.de/naaice/tug.git
synced 2025-12-13 09:28:23 +01:00
fix: add header guards to includes
This commit is contained in:
parent
d7608a7330
commit
b9c4474f5a
@ -211,4 +211,4 @@ private:
|
||||
boundaries; // Vector with Boundary Element information
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // BOUNDARY_H_
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
#ifndef GRID_H_
|
||||
#define GRID_H_
|
||||
|
||||
/**
|
||||
* @file Grid.hpp
|
||||
* @brief API of Grid class, that holds a matrix with concenctrations and a
|
||||
@ -174,3 +177,5 @@ private:
|
||||
MatrixXd alphaX; // Matrix holding alpha coefficients in x-direction
|
||||
MatrixXd alphaY; // Matrix holding alpha coefficients in y-direction
|
||||
};
|
||||
|
||||
#endif // GRID_H_
|
||||
|
||||
@ -5,8 +5,12 @@
|
||||
* options. Simulation object also holds a predefined Grid and Boundary object.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef SIMULATION_H_
|
||||
#define SIMULATION_H_
|
||||
|
||||
#include "Boundary.hpp"
|
||||
#include <ios>
|
||||
#include "Grid.hpp"
|
||||
|
||||
using namespace std;
|
||||
|
||||
@ -220,3 +224,5 @@ private:
|
||||
APPROACH approach;
|
||||
SOLVER solver;
|
||||
};
|
||||
|
||||
#endif // SIMULATION_H_
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user