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 |