<?
/*
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 AbstractHost
{ /* {src_lang=PHP}*/
// Attributes
// Associations
/**
*
* @element-type AbstractService
*/
var $services;
// Operations
function is_group() {
}
function get_name() {
}
function get_alias() {
}
function associateService($abstractService) {
}
function removeService($abstractService) {
}
function associateServiceGroup($abstractService) {
}
function removeServiceGroup($abstractService) {
}
} /* end class AbstractHost */
?>