add SQCManager

This commit is contained in:
stubbfel
2013-06-19 14:59:42 +02:00
parent 0d529ba7cb
commit 5ba6ca8387
9 changed files with 205 additions and 9 deletions

27
geoapi/api/SpsApi.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
include_once "../../global.inc.php";
require_once PATH_API."/Api.php";
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Description of HelloApi
*
* @author stubbfel
*/
class SpsApi extends Api{
public function __construct() {
parent::__construct();
}
public function __destruct() {
parent::__destruct();
}
}
?>