Project

General

Profile

Download (521 Bytes) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
// $Id$
3

    
4
/**
5
* Copyright (C) 2007 EDIT
6
* European Distributed Institute of Taxonomy 
7
* http://www.e-taxonomy.eu
8
* 
9
* The contents of this file are subject to the Mozilla Public License Version 1.1
10
* See http://www.mozilla.org/MPL/MPL-1.1.html for the full license terms.
11
*/
12

    
13

    
14
class FootnoteKey
15
{
16
    public $keyStr, $footnoteListKey;
17
    
18
    public function __construct($keyStr, $footnoteListKey) {
19
        $this->keyStr = $keyStr;
20
        $this->footnoteListKey = $footnoteListKey;
21
    }
22
	
23
}
(2-2/4)