/* Copyright (C) 2014-2019 de4dot@gmail.com This file is part of dnSpy dnSpy is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. dnSpy is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with dnSpy. If not, see . */ using VSUTIL = Microsoft.VisualStudio.Utilities; namespace dnSpy.Contracts.Hex.Files { /// /// Provides instances /// public abstract class StructureProvider { /// /// Constructor /// protected StructureProvider() { } /// /// Called before any other method, but since this method is allowed to call , /// the other methods could get called before this instance's method has been called. /// /// The method returns false if this instance should be removed (eg. the file isn't supported). /// /// This method is allowed to call and /// but should make sure that any provider it depends on has already been initialized (eg. add a /// on your class) /// /// public abstract bool Initialize(); /// /// Returns a structure at or null /// /// Position /// public abstract ComplexData? GetStructure(HexPosition position); /// /// Returns a structure or null /// /// Id, see eg. /// public abstract ComplexData? GetStructure(string id); /// /// Returns headers or null. This method is called before /// /// public virtual THeader? GetHeaders() where THeader : class, IBufferFileHeaders => null; } }