2019-07-31 23:08:00 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Toolbox.Library
|
|
|
|
|
{
|
2019-08-01 23:47:35 +02:00
|
|
|
|
//A custom clonable treenode
|
2019-07-31 23:08:00 +02:00
|
|
|
|
public interface ICloneableNode
|
|
|
|
|
{
|
|
|
|
|
TreeNode CloneNode();
|
|
|
|
|
}
|
|
|
|
|
}
|