$smarty = new Smarty();
$myClass = new MyClass( $smarty );
$myClass ->myMethod('super');
// MyClass
class MyClass()
{
  var $_smarty = null;
  function MyClass( &$smarty )
  {
      $this->_smarty = $smarty ;
   }
  function myMethod( $var )  
  {      
      $this->_smarty->assign( $var ) ;
      $this->_smarty->display('template.tpl' ) ;
  }
}