// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.UnitTests.Styling
{
using System;
using System.Collections.Generic;
using Perspex.Controls;
using Perspex.Styling;
public abstract class TestLogical : TestControlBase, ILogical
{
public TestLogical()
{
}
public abstract ILogical LogicalParent
{
get;
set;
}
public abstract IEnumerable LogicalChildren
{
get;
}
}
}