1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 01:18:19 +02:00
Files
archived-php-src/scripts/ext_skel_ng/config_m4.php
T

28 lines
355 B
PHP

<?php
class config_m4 {
# name, with[], libs[], language, files[]
var $name;
var $language = "c";
var $with = false;
var $libs = array();
var $files = array();
function __construct($name) {
$this->name = $name;
}
function write_file() {
$upname = strtoupper($this->name);
// CVS ID header
echo
'dnl
dnl $ Id: $
dnl
';
}
}
?>