pickles/classes/Viewer/Common.php
Josh Sherman 046d265347 Added the new classes and stuff.
git-svn-id: http://svn.cleancode.org/svn/pickles@30 4d10bc64-7434-11dc-a737-d2d0f8310089
2008-07-12 23:28:44 +00:00

16 lines
224 B
PHP

<?php
abstract class Viewer_Common extends Object {
protected $model = null;
public function __construct(Model $model) {
parent::__construct();
$this->model = $model;
}
abstract public function display();
}
?>