blob: 0c4535f1e95a23c779fad20593f8f249574b2033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* @author Daniel Sampedro Bello <darthdaniel85@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @since 3.3
* @package Prado\Wsat\pages
*/
namespace Prado\Wsat\pages;
use Prado\Prado;
use Prado\Web\UI\TPage;
Prado::using("System.Wsat.TWsatARGenerator");
class TWsatHome extends TPage
{
}
|