using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
using System.Windows.Forms;
using IReaper.CourseData;
namespace IReaper.Category{
public interface IWebcastNode<T>
{
void SetVector(IVector<T> vector);
void AddData(CourseAttributeTypeEnum Type,object obj,BindingList<T> Data);
void RemoveData(CourseAttributeTypeEnum Type, object obj);
void SetRoot(BindingList<T> Data);
}
}
|