17 lines
322 B
C#
17 lines
322 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CPF.ReoGrid.Drawing
|
|
{
|
|
public interface IFloatingObjectCollection<T> : ICollection<T>, IEnumerable<T>, IEnumerable where T : IFloatingObject
|
|
{
|
|
T this[int index]
|
|
{
|
|
get;
|
|
}
|
|
|
|
void AddRange(IEnumerable<T> drawingObjects);
|
|
}
|
|
}
|