mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
35 lines
595 B
C++
35 lines
595 B
C++
![]() |
#include "ListPtr.hpp"
|
||
|
#include "boundaryContactSearch.hpp"
|
||
|
|
||
|
namespace pFlow
|
||
|
{
|
||
|
|
||
|
class boundaryList;
|
||
|
class contactSearch;
|
||
|
|
||
|
class boundaryContactSearchList
|
||
|
:
|
||
|
public ListPtr<boundaryContactSearch>
|
||
|
{
|
||
|
private:
|
||
|
|
||
|
const boundaryList& boundaries_;
|
||
|
|
||
|
void setList(
|
||
|
const dictionary& dict,
|
||
|
const contactSearch& cSearch);
|
||
|
public:
|
||
|
|
||
|
TypeInfoNV("boundaryContactSearchList");
|
||
|
|
||
|
boundaryContactSearchList(
|
||
|
const dictionary& dict,
|
||
|
const boundaryList& bndrs,
|
||
|
const contactSearch& cSearch);
|
||
|
|
||
|
~boundaryContactSearchList()=default;
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|