1 // 2 // Copyright (c) 2010-2018 Antmicro 3 // Copyright (c) 2011-2015 Realtime Embedded 4 // 5 // This file is licensed under the MIT License. 6 // Full license text is available in 'licenses/MIT.txt'. 7 // 8 using Antmicro.Renode.Extensions.Analyzers.Video.Handlers; 9 10 namespace Antmicro.Renode.Extensions.Analyzers.Video.Events 11 { 12 internal interface IEventSource 13 { AttachHandler(IOHandler h)14 void AttachHandler(IOHandler h); DetachHandler()15 void DetachHandler(); 16 17 int X { get; } 18 int Y { get; } 19 } 20 } 21 22