<?
/*
Oreon is developped with GPL Licence 2.0 :
http://www.gnu.org/licenses/gpl.txt
Developped by : Toni de la Fuente (blyx)
For information : hide@address.com
*/
// We don't use it yet
class AbstractService
{
// Attributes
// Associations
/**
*
* @element-type AbstractHost
*/
var $hosts;
// Operations
function is_group() {
}
/* {documentation=return true if ServiceGroup
return flase if Service}*/
function associateHost($abstractHost) {
}
function removeHost($abstractHost) {
}
function associateHostGroup($abstractHost) {
}
function removeHostGroup($abstractHost) {
}
} /* end class AbstractService */
?>