Mercurial > repos > IBBoard
annotate IBBoard.cs @ 59:c6ed77f263a6
Re #24: Add limit objects
* Add default constructor that doesn't set a limit (so it always returns whatever is passed to GetLimit())
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 24 Oct 2009 19:49:47 +0000 |
parents | cc7fae81afec |
children | ecf3ce7bd6c5 |
rev | line source |
---|---|
16 | 1 // This file (IBBoard.cs) is a part of the IBBoard library and is copyright 2009 IBBoard. |
2 // | |
3 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license. | |
4 | |
37 | 5 using System; |
6 | |
7 namespace IBBoard | |
0
961030992bd2
Initial commit of IBBoard libraries
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
8 { |
37 | 9 public delegate void MethodInvoker(); |
10 public delegate void PropertySetterInvoker(object obj, object val, object[] index); | |
11 } |