feat: Added an event that is raised when the system time is set

This commit is contained in:
Chris Cameron
2019-09-10 17:17:09 -04:00
parent 0821dcb3ca
commit 83bc344ab3
3 changed files with 11 additions and 1 deletions

View File

@@ -62,6 +62,11 @@ namespace ICD.Common.Utils
/// </summary>
public static event EventHandler OnProgramInitializationComplete;
/// <summary>
/// Raised when the system date/time has been set.
/// </summary>
public static event EventHandler OnSystemDateTimeChanged;
private static readonly SafeCriticalSection s_ProgramInitializationSection = new SafeCriticalSection();
private static bool s_ProgramInitializationComplete;