#ifndef __boundaryIntegrationList_hpp__ #define __boundaryIntegrationList_hpp__ #include "boundaryList.hpp" #include "ListPtr.hpp" #include "boundaryIntegration.hpp" namespace pFlow { class integration; class boundaryIntegrationList : public ListPtr { private: const boundaryList& boundaries_; public: boundaryIntegrationList( const pointStructure& pStruct, const word& method, integration& intgrtn ); ~boundaryIntegrationList()=default; bool correct( real dt, realx3PointField_D& y, realx3PointField_D& dy); }; } #endif //__boundaryIntegrationList_hpp__