Хранилища Subversion ant

Редакция

Редакция 304 | Редакция 308 | К новейшей редакции | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
304 alex-w 1
<?php
2
 
3
/**
4
 *  
5
 *  Codename: ant-ng - generator of sources.list for Debian and
6
 *  distributives, based on Debian
7
 *  http://alex-w.org.ru/p/antng/
8
 *
9
 *  Copyright (c) 2009 Alexander Wolf
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
11
 *  http://alex-w.org.ru/p/antng/license
12
 *
13
 */
14
 
15
class Core {
307 alex-w 16
    protected $db = NULL;
304 alex-w 17
 
307 alex-w 18
    function __constructor($database) {
19
        $this->db = $database;
20
    }
21
 
304 alex-w 22
}
23
 
307 alex-w 24
class Security extends Core {
25
    function __constructor() {
26
 
27
    }
28
}
29
 
30
class Owner extends Core {
31
    function __constructor() {
32
 
33
    }
34
}
35
 
304 alex-w 36
?>