/** * @file forb-idl.idl * @author Michal Sojka * @date Mon Oct 13 13:41:54 2008 * * @brief Remote interface for FORB * */ module forb { /** * Remote interface for FORB obejcts * * Every FORB provides this interface to remote forbs so that * other FORBs can obtain information about other FORBs. */ interface orb { void is_alive(); /**< Empty function intended to check whether the FORB is active or not. */ }; };