1234567891011121314151617181920 |
- using System;
- using SRDebugger.Internal;
- namespace SRDebugger.Services
- {
- public interface IPinnedUIService
- {
- event Action<OptionDefinition, bool> OptionPinStateChanged;
- bool IsProfilerPinned { get; set; }
- void Pin(OptionDefinition option, int order = -1);
- void Unpin(OptionDefinition option);
- void UnpinAll();
- bool HasPinned(OptionDefinition option);
- }
- }
|