added Expansive

This commit is contained in:
Keivan Beigi
2013-04-15 17:07:58 -07:00
parent 652a9d4a8a
commit 6a5c10a456
8 changed files with 435 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace NzbDrone.Common.Expansive
{
internal class Tree<T> : TreeNode<T>
{
public Tree(T rootValue)
: base(rootValue)
{
Value = rootValue;
}
}
}