Dernieres-Manips

////////Interface IDL Dernière question

  module hellop {
  interface Hello {
    string say_hello (in string nameClient, out string nameServer);
    void switchlanguage();
  };
  interface HFactory {
     Hello createHello ();
  };
 };