<?php
// Create an empty interface.
//
// $Id: Interface.tpl,v 1.2 2004/10/06 16:54:47 hlellelid Exp $
echo '<' . '?' . 'php';
$db = $table->getDatabase();
if($table->getPackage()) {
$package = $table->getPackage();
} else {
$package = $targetPackage;
}
$interface = ClassTools::getInterface($table);
?>
/**
* This is an interface that should be filled with the public api of the
* <?php echo $table->getPhpName()?> objects.
* The skeleton for this class was autogenerated by Propel <?php if ($addTimeStamp) { ?>on:
*
* [<?php echo $now ?>]
* <?php } ?>
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*/
interface <?php echo ClassTools::classname($interface) ?> {
}