]> git.draconx.ca Git - gob-dx.git/blob - examples/GNOME_Foo_SomeInterface.idl
Release 1.99.1
[gob-dx.git] / examples / GNOME_Foo_SomeInterface.idl
1 #include <Bonobo.idl>
2
3 /* An example interface
4  *
5  * Do note that the GNOME namespace is not just a freeforall,
6  * so this file should not be installed as Foo is not a registered
7  * name.  To see the current namespece setup see doc/NAMESPACE
8  * in the bonobo cvs module or from a recent bonobo tarball.
9  * To register a new name under the GNOME namespace just drop
10  * a mail to:
11  * Michael Meeks <michael@ximian.com> or George Lebl <jirka@5z.com>
12  * and we'll get you all set.  (This is just to avoid conflicts in
13  * the namespace, and no it doesn't cost anything)
14  */
15
16 module GNOME {
17
18 module Foo {
19
20 interface SomeInterface {
21         void fooBar (in string foo);
22 };
23
24 };
25
26 };