]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/cvs.php
extended the functionality of the cvs backend, extended the unit test
[SourceForge/phpwiki.git] / lib / WikiDB / cvs.php
1 <?php
2
3 rcs_id( '$Id: cvs.php,v 1.2 2001-11-08 11:01:16 riessen Exp $' );
4
5 require_once( 'lib/WikiDB.php' );
6 require_once( 'lib/WikiDB/backend/cvs.php' );
7
8 /**
9  * Wrapper class for the cvs backend.
10  *
11  * Author: Gerrit Riessen, gerrit.riessen@open-source-consultants.de
12  */
13 class WikiDB_cvs
14 extends WikiDB
15 {  
16     var $_backend;
17
18     /**
19      * Constructor requires the DB parameters. 
20      */
21     function WikiDB_cvs( $dbparams ) 
22     {
23         $this->_backend = new WikiDB_backend_cvs( $dbparams );
24     }
25 }
26 ?>