Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Console/IAgentList.cs @ 367

Last change on this file since 367 was 357, checked in by gkronber, 16 years ago

worked on ticket #187. code is a mess. work-in-progress.

File size: 260 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6
7namespace HeuristicLab.CEDMA.Console {
8  public interface IAgentList : IItem, IEnumerable<IAgent> {
9    void Add(IAgent agent);
10  }
11}
Note: See TracBrowser for help on using the repository browser.