1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (http://nette.org)
5: * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
6: */
7:
8: namespace Nette\Application\UI;
9:
10: use Nette;
11:
12:
13: /**
14: * Defines ITemplate factory.
15: */
16: interface ITemplateFactory
17: {
18:
19: /**
20: * @return ITemplate
21: */
22: function createTemplate(Control $control = NULL);
23:
24: }
25: