modification in structure for ip and routers

This commit is contained in:
Yoggzo 2016-04-21 21:51:46 +02:00
parent 94ce37f517
commit 3f6af0b644
7 changed files with 30 additions and 59 deletions

View file

@ -14,6 +14,7 @@ include("CoreInterface.php");
include("Image.php");
include("Network.php");
include("Compute.php");
include("NetworkLayer3");
class automating implements Core{
@ -22,7 +23,7 @@ class automating implements Core{
protected $appImage;
protected $appNetwork;
protected $appIdentity;
protected $appFloatingIp;
protected $appNetworkLayer3;
protected $app;
/**
@ -40,7 +41,7 @@ class automating implements Core{
$this->appImage = $appImage;
$this->appNetwork = $appNetwork;
$this->appIdentity = $appIdentity;
$this->appFloatingIp = $appFloatingIp;
$this->appNetworkLayer3 = $appNetworkLayer3;
$this->app = $app;
}