- Small fix for the sake of code correctness

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1037 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-09-07 09:56:56 +00:00
parent 3fe76dad2d
commit 1203372f3e
3 changed files with 10 additions and 2 deletions

View file

@ -82,3 +82,9 @@ History::set_notify_enabled(bool enabled)
return old_value;
}
bool
History::is_notify_enabled() const
{
return _notify;
}

View file

@ -143,6 +143,7 @@ namespace sgpem
* \return The old value
*/
virtual bool set_notify_enabled(bool enabled = true);
bool is_notify_enabled() const;
virtual void reset() = 0;