// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
namespace Avalonia.Controls
{
///
/// Defines an interface through which a 's inheritance parent can be set.
///
///
/// You should not usually need to use this interface - it is for advanced scenarios only.
/// Additionally, also sets the inheritance parent; this
/// interface is only needed where the logical and inheritance parents differ.
///
public interface ISetInheritanceParent
{
///
/// Sets the control's inheritance parent.
///
/// The parent.
void SetParent(IAvaloniaObject parent);
}
}