Remove a dependency Does not unload from context \param depName The name of the dependency to remove \return If one was removed
| 93 | /// \param depName The name of the dependency to remove |
| 94 | /// \return If one was removed |
| 95 | bool removeDependency(std::string depName) { |
| 96 | return mDependencies.erase(std::move(depName)) == 1; |
| 97 | } |
| 98 | |
| 99 | /// Get the time that this module was last edited |
| 100 | /// \return The `std::time_t` at which it was last edited |