| 129 | |
| 130 | |
| 131 | void GridFunction :: ConnectAutoUpdate() |
| 132 | { |
| 133 | // if (this->weak_from_this().expired()) |
| 134 | // throw Exception("Given pointer is not managed by a shared ptr."); |
| 135 | if (this->DoesAutoUpdate()) |
| 136 | this->GetFESpace()->updateSignal.Connect(this, [this](){ this->Update(); }); |
| 137 | } |
| 138 | |
| 139 | |
| 140 | void GridFunction :: DoArchive (Archive & archive) |
nothing calls this directly
no test coverage detected