* @license http://www.contenido.org/license/LIZENZ.txt * @link http://www.4fb.de * @link http://www.contenido.org * * {@internal * created * * $Id$: * }} * */ if (!defined('CON_FRAMEWORK')) { die('Illegal call'); } class cDatatype { /* Effective value */ var $_mValue; /* Displayed value */ var $_mDisplayedValue; function __construct() { } /* Sets this datatype to a specific value */ function set($value) { } /* Parses the given value to transfer into the datatype's format */ function parse($value) { } /* Returns the effective value */ function get() { } /* Renders the displayed value */ function render() { } } ?>