Constants.php 811 Bytes
<?php

define("TREPS_DEBUG", false);
define("TREPS_INSTALL_DIR", "/home/mbouchemit/TREPS/");

define("TREPS_PHP_DIR", TREPS_INSTALL_DIR."/www/php/");
define("TREPS_BIN_DIR", TREPS_INSTALL_DIR."/bin/");

define("TREPS_PHP_TMP_DIR", TREPS_PHP_DIR."data/");
define("TREPS_PHP_DIRECT_DIR", TREPS_PHP_DIR."direct/");

define("TREPS_BIN_KERNEL_DIR", TREPS_BIN_DIR."kernel/");
define("TREPS_BIN_COTS_DIR", TREPS_BIN_DIR."COTS/");

define("TREPS_BIN_KERNEL_NAME", "treps_kernel");

define("TREPS_LIBRARY_PATH", TREPS_BIN_COTS_DIR."log4cxx/lib:".TREPS_BIN_COTS_DIR."cdf/lib:".TREPS_BIN_COTS_DIR."netcdf/lib:".TREPS_BIN_COTS_DIR."cppunit/lib");

class OutputTypeEnum {
	const OUTPUT_NONE       = 0;
	const OUTPUT_RESULTFILE = 1;
	const OUTPUT_XMLFILE    = 2;
	const OUTPUT_STRING     = 3;
}

?>