2000-03-12 bertrand <bertrand@helixcode.com> * shell/evolution-service-repository.c: * shell/evolution-service-repository.h: Implementation of the service repository interface as a bonobo object. * shell/evolution-service-repository.idl: new file. Contains the definition for the service repository interface. * shell/Shell.idl: move the shell related stuff here svn path=/trunk/; revision=2103
22 lines
338 B
Plaintext
22 lines
338 B
Plaintext
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
/*
|
|
* Component Interface
|
|
*
|
|
* Authors:
|
|
* Bertrand Guiheneuf (bg@aful.org)
|
|
*
|
|
* (C) 2000 Helix Code, Inc.
|
|
*/
|
|
#include <Bonobo.idl>
|
|
|
|
module Evolution {
|
|
interface ServiceRepository : Bonobo::Unknown {
|
|
|
|
void set_shell (in Shell shell);
|
|
|
|
|
|
};
|
|
};
|
|
|