File: GNOME_Foo_SomeInterface.idl

package info (click to toggle)
gob2 2.0.17-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,564 kB
  • ctags: 1,406
  • sloc: ansic: 5,133; yacc: 2,023; sh: 1,156; lex: 623; perl: 431; makefile: 69
file content (26 lines) | stat: -rw-r--r-- 667 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <Bonobo.idl>

/* An example interface
 *
 * Do note that the GNOME namespace is not just a freeforall,
 * so this file should not be installed as Foo is not a registered
 * name.  To see the current namespece setup see doc/NAMESPACE
 * in the bonobo cvs module or from a recent bonobo tarball.
 * To register a new name under the GNOME namespace just drop
 * a mail to:
 * Michael Meeks <michael@ximian.com> or George Lebl <jirka@5z.com>
 * and we'll get you all set.  (This is just to avoid conflicts in
 * the namespace, and no it doesn't cost anything)
 */

module GNOME {

module Foo {

interface SomeInterface {
	void fooBar (in string foo);
};

};

};