// Bank.idl
module Bank { interface Account { float balance(); }; interface AccountManager { Account open(in string name); }; };
Logged In: YES user_id=14600
using Remoting.Corba; namespace Bank { public interface Account: ICorbaObject { float balance(); }
public interface AccountManager: ICorbaObject { Account open(string name); } }
Log in to post a comment.
Logged In: YES
user_id=14600
using Remoting.Corba;
namespace Bank
{
public interface Account: ICorbaObject
{
float balance();
}
public interface AccountManager: ICorbaObject
{
Account open(string name);
}
}