2000-03-12 bertrand <bertrand@helixcode.com> * shell/e-folder.h: add a field refering to a service associated to the efolder. In the case of distant folders, it is generally a server. * shell/e-service.c: New class. Models a service. A service is an object with an URI and a root folder. It genreally reporesents a distant folder. A service is generally a ressource shared amongst several folders. * shell/e-service.h: 2000-03-10 bertrand <bertrand@helixcode.com> * camel-service.h: cosmetic changes. svn path=/trunk/; revision=2100
24 lines
345 B
Plaintext
24 lines
345 B
Plaintext
/*
|
|
* CORBA interface for the Evolution shell
|
|
*
|
|
* Authors:
|
|
* Miguel de Icaza (miguel@kernel.org)
|
|
*
|
|
* (C) 2000 Helix Code, Inc.
|
|
*/
|
|
#include <bonobo.idl>
|
|
|
|
module GNOME {
|
|
|
|
module Evolution {
|
|
|
|
interface Shell : GNOME::Unknown {
|
|
/*
|
|
* add a service to the shell.
|
|
*
|
|
*/
|
|
void AddService (string service);
|
|
};
|
|
};
|
|
};
|