]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiDB/cvs.php
first skeleton version of the cvs
[SourceForge/phpwiki.git] / lib / WikiDB / cvs.php
1 <?php
2
3 rcs_id( '$Id: cvs.php,v 1.1 2001-09-28 14:28:21 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     function WikiDB_cvs( $dbparams ) {
17         $backend = new WikiDB_backend_cvs( $dbparams );
18     }
19 }
20 ?>