source: branches/mvc/Application/Controller/Client.php

Last change on this file was 47, checked in by chronos, 10 years ago
  • Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
File size: 394 bytes
Line 
1<?php
2
3include_once(dirname(__FILE__).'/../../Base/Controller.php');
4include_once(dirname(__FILE__).'/../Model/Measurement/MeasureClient.php');
5
6class ClientController extends Controller
7{
8 function Show()
9 {
10 $MeasureClient = new MeasureClient($this->System);
11 $MeasureClient->Process();
12
13 //$View = new MeasureView($this->System);
14 //return($View->Add());
15 }
16}
Note: See TracBrowser for help on using the repository browser.