Mercurial > repos > IBBoard.WarFoundry.API
annotate api/Requirements/AbstractFailedRequirement.cs @ 331:e1d1b81b192a
Re #27: Define unit requirements
* Implement code for min limits > 1
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 27 Mar 2011 19:50:33 +0000 |
parents | 2f3cafb69799 |
children |
rev | line source |
---|---|
104
2f3cafb69799
Re #121: Migrate to AGPL license
IBBoard <dev@ibboard.co.uk>
parents:
82
diff
changeset
|
1 // This file (AbstractFailedRequirement.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2008, 2009 IBBoard. |
0 | 2 // |
104
2f3cafb69799
Re #121: Migrate to AGPL license
IBBoard <dev@ibboard.co.uk>
parents:
82
diff
changeset
|
3 // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. |
0 | 4 |
5 using System; | |
6 | |
7 namespace IBBoard.WarFoundry.API.Requirements | |
8 { | |
9 public abstract class AbstractFailedRequirement | |
10 { | |
11 protected AbstractRequirement failedReq; | |
12 | |
13 public AbstractFailedRequirement(AbstractRequirement req) | |
14 { | |
15 failedReq = req; | |
16 } | |
82 | 17 |
0 | 18 public abstract string Description { get; } |
19 } | |
20 } |