/*
 *  Sample file that demostrates how to create new
 * Bonobo interfaces.
 */

#include <Bonobo.idl>

module Bonobo {
module Sample {
  
	interface Echo : Bonobo::Unknown {
		void echo (in string message);
	};

};
};
