2019-01-17 16:15:10 +01:00
|
|
|
|
/*
|
2021-02-03 00:45:33 +01:00
|
|
|
|
* Copyright (c) 2021 ETH Zürich, Educational Development and Technology (LET)
|
2019-01-17 16:15:10 +01:00
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-03-18 23:12:07 +01:00
|
|
|
|
using SafeExamBrowser.Core.Contracts.Resources.Icons;
|
2019-01-17 16:15:10 +01:00
|
|
|
|
|
2019-08-30 09:55:26 +02:00
|
|
|
|
namespace SafeExamBrowser.Applications.Contracts.Events
|
2019-01-17 16:15:10 +01:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-11-28 17:22:04 +01:00
|
|
|
|
/// Event handler used to indicate that an icon has changed.
|
2019-01-17 16:15:10 +01:00
|
|
|
|
/// </summary>
|
2019-11-06 08:45:37 +01:00
|
|
|
|
public delegate void IconChangedEventHandler(IconResource icon);
|
2019-01-17 16:15:10 +01:00
|
|
|
|
}
|