ln.application/slots/BinarySlotContainer.cs

29 lines
631 B
C#

// /**
// * File: BinarySlotContainer.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
using ln.types.btree;
namespace ln.application.slots
{
public class BinarySlotContainer
{
BTree<Guid, BinarySlot> slots = new BTree<Guid, BinarySlot>();
public BinarySlotContainer()
{
}
public SlotAllocation RequestSlot(SlotRequest slotRequest)
{
return null;
}
}
}