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 Original line Diff line number Diff line
#ifndef CELLBOUNDARYCONNECTION_H
#ifndef CELLBOUNDARYCONNECTION_H
#define CELLBOUNDARYCONNECTION_H
#define CELLBOUNDARYCONNECTION_H
#include "unstructed_mesh_define.h"
#include "UnstructedMeshDefine.h"
#include "cellconnection.h"
#include "CellConnection.h"


template<typename indexType>
template<typename indexType>
class CellBoundaryConnection : public CellConnection<indexType> {
class CellBoundaryConnection : public CellConnection<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 "unstructed_mesh_define.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
+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 "mesh_element.h"
#include "MeshElement.h"
#include "../debug/debug.h"
#include "../debug/debug.h"




Loading