Mercurial > repos > IBDev-IBBoard.WarFoundry.API
annotate api/Requirements/AbstractFailedRequirement.cs @ 218:a1a6b527cd70
Re #226
* Fix missing "using" import caused by r419
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 28 Nov 2009 16:22:11 +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 } |