<?php

include_once(dirname(__FILE__).'/Routerboard.php');
include_once(dirname(__FILE__).'/Generators/Common.php');

class ModuleNetworkConfigRouterOS extends AppModule
{
  function __construct($System)
  {
    parent::__construct($System);
    $this->Name = 'NetworkConfigRouterOS';
    $this->Version = '1.0';
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPL';
    $this->Description = 'Mikrotik RouterOS configuration';
    $this->Dependencies = array('NetworkConfig');
  }
  
  function DoInstall()
  {
  }
  
  function DoUnInstall()
  {
  }

  function DoStart()
  {
  }
}
