| 2073 | |
| 2074 | |
| 2075 | void FESpace :: ConnectAutoUpdate() |
| 2076 | { |
| 2077 | /* |
| 2078 | if (this->weak_from_this().expired()) |
| 2079 | throw Exception("Given pointer is not managed by a shared ptr."); |
| 2080 | if (this->DoesAutoUpdate()) |
| 2081 | this->GetMeshAccess()->updateSignal.Connect(this, [this]() |
| 2082 | { |
| 2083 | this->Update(); |
| 2084 | this->FinalizeUpdate(); |
| 2085 | }); |
| 2086 | */ |
| 2087 | if (this->DoesAutoUpdate()) |
| 2088 | this->GetMeshAccess()->updateSignal.Connect(this, [this]() |
| 2089 | { |
| 2090 | this->Update(); |
| 2091 | this->FinalizeUpdate(); |
| 2092 | }); |
| 2093 | } |
| 2094 | |
| 2095 | void FESpace :: SetDefinedOn (VorB vb, const BitArray & defon) |
| 2096 | { |
nothing calls this directly
no test coverage detected