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

Names of header files to camelcase

parent a55ed44b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
#ifndef CELLBOUNDARYCONNECTION_H
#define CELLBOUNDARYCONNECTION_H
#include "unstructed_mesh_define.h"
#include "cellconnection.h"
#include "UnstructedMeshDefine.h"
#include "CellConnection.h"

template<typename indexType>
class CellBoundaryConnection : public CellConnection<indexType> {
+1 −1
Original line number Diff line number Diff line
#ifndef CELLCONNECTION_H
#define CELLCONNECTION_H
#include "unstructed_mesh_define.h"
#include "UnstructedMeshDefine.h"


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

template <unsigned int MeshDim, typename Real>
class ComputationallySignificantElement
+1 −1
Original line number Diff line number Diff line
#ifndef MESHDATACONTAINER_H
#define MESHDATACONTAINER_H

#include "mesh_element.h"
#include "MeshElement.h"
#include "../debug/debug.h"


Loading