code refactor upto pointFields and insertion etc.

This commit is contained in:
Hamidreza Norouzi
2024-01-25 03:10:44 -08:00
parent 8dc8009311
commit ab6308bb0a
47 changed files with 814 additions and 476 deletions

View File

@ -82,6 +82,9 @@ bool pFlow::subscriber::unsubscribe
bool pFlow::subscriber::notify
(
real t,
real dt,
uint32 iter,
const message msg,
const anyList& varList
)
@ -93,7 +96,14 @@ bool pFlow::subscriber::notify
{
for( auto obsvr: observerList_[i] )
{
obsvr->hearChanges(message(i), varList);
obsvr->hearChanges
(
t,
dt,
iter,
message(i),
varList
);
}
}
}