modify for coupling-cpp and hpp

This commit is contained in:
hamidrezanorouzi
2022-12-10 01:32:54 +03:30
parent 878c281d45
commit 8cc47b1c47
393 changed files with 1679 additions and 1679 deletions

View File

@ -1,8 +1,8 @@
set(SourceFiles
vtkFile.C
readFromTimeFolder.C
readControlDict.C
vtkFile.cpp
readFromTimeFolder.cpp
readControlDict.cpp
)
set(link_libs Kokkos::kokkos phasicFlow Particles Geometry)

View File

@ -17,9 +17,9 @@ Licence:
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-----------------------------------------------------------------------------*/
#include "readControlDict.H"
#include "iFstream.H"
#include "timeFolder.H"
#include "readControlDict.hpp"
#include "iFstream.hpp"
#include "timeFolder.hpp"
pFlow::word pFlow::readControlDict::convertTimeToName(
const real t,

View File

@ -18,10 +18,10 @@ Licence:
-----------------------------------------------------------------------------*/
#ifndef __readControlDict_H__
#define __readControlDict_H__
#ifndef __readControlDict_hpp__
#define __readControlDict_hpp__
#include "fileSystem.H"
#include "fileSystem.hpp"
namespace pFlow
@ -83,5 +83,5 @@ public:
}
#endif //__readControlDict_H__
#endif //__readControlDict_hpp__

View File

@ -18,7 +18,7 @@ Licence:
-----------------------------------------------------------------------------*/
#include "readFromTimeFolder.H"
#include "readFromTimeFolder.hpp"
pFlow::readFromTimeFolder::readFromTimeFolder(repository& rep)
:

View File

@ -17,13 +17,13 @@ Licence:
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-----------------------------------------------------------------------------*/
#ifndef __readFromTimeFolder_H__
#define __readFromTimeFolder_H__
#ifndef __readFromTimeFolder_hpp__
#define __readFromTimeFolder_hpp__
#include "repository.H"
#include "pointFields.H"
#include "utilityFunctions.H"
#include "repository.hpp"
#include "pointFields.hpp"
#include "utilityFunctions.hpp"
namespace pFlow
{
@ -198,4 +198,4 @@ public:
#endif //__readFromTimeFolder_H__
#endif //__readFromTimeFolder_hpp__

View File

@ -18,8 +18,8 @@ Licence:
-----------------------------------------------------------------------------*/
#ifndef __utilityFunctions_H__
#define __utilityFunctions_H__
#ifndef __utilityFunctions_hpp__
#define __utilityFunctions_hpp__
#include <regex>
@ -42,4 +42,4 @@ bool inline pointFieldGetType(std::string TYPENAME, std::string& fieldType, std:
}
#endif //__utilityFunctions_H__
#endif //__utilityFunctions_hpp__

View File

@ -19,7 +19,7 @@ Licence:
-----------------------------------------------------------------------------*/
#include "vtkFile.H"
#include "vtkFile.hpp"
bool pFlow::vtkFile::openStream()
{

View File

@ -18,13 +18,13 @@ Licence:
-----------------------------------------------------------------------------*/
#ifndef __vtkFile_H__
#define __vtkFile_H__
#ifndef __vtkFile_hpp__
#define __vtkFile_hpp__
#include "types.H"
#include "uniquePtr.H"
#include "fileSystem.H"
#include "streams.H"
#include "types.hpp"
#include "uniquePtr.hpp"
#include "fileSystem.hpp"
#include "streams.hpp"
namespace pFlow
{
@ -87,4 +87,4 @@ public:
}
#endif //__vtkFile_H__
#endif //__vtkFile_hpp__