mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-09-16 04:16:04 +00:00
36 lines
509 B
C++
36 lines
509 B
C++
![]() |
|
||
|
|
||
|
#ifndef __boundaryGrainParticlesList_hpp__
|
||
|
#define __boundaryGrainParticlesList_hpp__
|
||
|
|
||
|
#include "ListPtr.hpp"
|
||
|
#include "boundaryList.hpp"
|
||
|
#include "boundaryGrainParticles.hpp"
|
||
|
|
||
|
namespace pFlow
|
||
|
{
|
||
|
|
||
|
class boundaryGrainParticlesList
|
||
|
:
|
||
|
public ListPtr<boundaryGrainParticles>
|
||
|
{
|
||
|
private:
|
||
|
|
||
|
const boundaryList& boundaries_;
|
||
|
|
||
|
public:
|
||
|
|
||
|
boundaryGrainParticlesList(
|
||
|
const boundaryList& bndrs,
|
||
|
grainParticles& prtcls
|
||
|
);
|
||
|
|
||
|
~boundaryGrainParticlesList()=default;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|