Commit fe0a3b6b authored by Tomáš Jakubec's avatar Tomáš Jakubec
Browse files

Reorganization of project file structure

parent 473a0915
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
#ifndef MESHDATACONTAINER_H
#ifndef MESHDATACONTAINER_H
#define MESHDATACONTAINER_H
#define MESHDATACONTAINER_H


#include "MeshElement.h"
#include "UnstructuredMesh/MeshElements/MeshElement.h"
#include "../debug/Debug.h"
#include "../debug/Debug.h"




+1 −1
Original line number Original line Diff line number Diff line
#ifndef CELLBOUNDARYCONNECTION_H
#ifndef CELLBOUNDARYCONNECTION_H
#define CELLBOUNDARYCONNECTION_H
#define CELLBOUNDARYCONNECTION_H
#include "UnstructedMeshDefine.h"
#include "../UnstructedMeshDefine.h"
#include "CellConnection.h"
#include "CellConnection.h"


template<typename indexType>
template<typename indexType>
+1 −1
Original line number Original line Diff line number Diff line
#ifndef CELLCONNECTION_H
#ifndef CELLCONNECTION_H
#define CELLCONNECTION_H
#define CELLCONNECTION_H
#include "UnstructedMeshDefine.h"
#include "../UnstructedMeshDefine.h"




/**
/**
+1 −1
Original line number Original line Diff line number Diff line
#ifndef COMPUTATIONALY_SIGNIFICANT_ELEMENT_H
#ifndef COMPUTATIONALY_SIGNIFICANT_ELEMENT_H
#define COMPUTATIONALY_SIGNIFICANT_ELEMENT_H
#define COMPUTATIONALY_SIGNIFICANT_ELEMENT_H
#include "Vertex.h"
#include "../../Vertex.h"


template <unsigned int MeshDim, typename Real>
template <unsigned int MeshDim, typename Real>
class ComputationallySignificantElement
class ComputationallySignificantElement
+2 −2
Original line number Original line Diff line number Diff line
#ifndef MESH_ELEMENT_H
#ifndef MESH_ELEMENT_H
#define MESH_ELEMENT_H
#define MESH_ELEMENT_H
#include "UnstructedMeshDefine.h"
#include "../UnstructedMeshDefine.h"
#include "Vertex.h"
#include "../../Vertex.h"
#include "CellBoundaryConnection.h"
#include "CellBoundaryConnection.h"
#include "ComputationalySignificantElement.h"
#include "ComputationalySignificantElement.h"
#include "type_traits"
#include "type_traits"
Loading