1: <?php
2: include_once "../../global.inc.php";
3:
4: require_once PATH_API."/Api.php";
5:
6: /*
7: * To change this template, choose Tools | Templates
8: * and open the template in the editor.
9: */
10:
11: /**
12: * Description of HelloApi
13: *
14: * @author stubbfel
15: */
16: class SpsApi extends Api{
17:
18: public function __construct() {
19: parent::__construct();
20: }
21:
22: public function __destruct() {
23: parent::__destruct();
24: }
25: }
26:
27: ?>
28: