* RouterInfo::SaveToFile() now returns bool

This commit is contained in:
hagen 2016-04-05 00:00:00 +00:00
parent f63dd75f08
commit 5f73f09836
2 changed files with 12 additions and 11 deletions

View file

@ -161,7 +161,7 @@ namespace data
bool IsUpdated () const { return m_IsUpdated; };
void SetUpdated (bool updated) { m_IsUpdated = updated; };
void SaveToFile (const std::string& fullPath);
bool SaveToFile (const std::string& fullPath);
std::shared_ptr<RouterProfile> GetProfile () const;
void SaveProfile () { if (m_Profile) m_Profile->Save (); };