using Serein.Workbench.Node.View;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Workbench.Node
{
///
/// 约束具有容器功能的节点控件应该有什么方法
///
public interface INodeContainerControl
{
///
/// 放置一个节点
///
///
void PlaceNode(NodeControlBase nodeControl);
///
/// 取出一个节点
///
///
void TakeOutNode(NodeControlBase nodeControl);
///
/// 取出所有节点(用于删除容器)
///
void TakeOutAll();
}
}