Files
geodb/geoapi/api/SpsApi.php
2013-06-19 14:59:42 +02:00

28 lines
428 B
PHP

<?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();
}
}
?>