<?php

include_once(dirname(__FILE__).'/Map.php');
include_once(dirname(__FILE__).'/MapGoogle.php');
include_once(dirname(__FILE__).'/MapOSM.php');
include_once(dirname(__FILE__).'/MapSeznam.php');

class ModuleMap extends Module
{
  function __construct($System)
  {
    parent::__construct($System);
    $this->Name = 'Map';
    $this->Version = '1.0';
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPL';
    $this->Description = 'Map';
    $this->Dependencies = array();
  }

  function DoStart(): void
  {
  }

  function DoInstall(): void
  {
  }

  function DoUninstall(): void
  {
  }

  function DoUpgrade(): string
  {
    return '';
  }
}
