Revision 16770,
863 bytes
checked in by ghudson, 23 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r16769,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | /* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ |
---|
2 | /* |
---|
3 | * Interface for saving configuration information. |
---|
4 | * |
---|
5 | * Authors: |
---|
6 | * Ettore Perazzoli <ettore@ximian.com> |
---|
7 | * |
---|
8 | * Copyright (C) 2000, 2001 Ximian, Inc. |
---|
9 | */ |
---|
10 | |
---|
11 | #include <Bonobo.h> |
---|
12 | |
---|
13 | module GNOME { |
---|
14 | module Evolution { |
---|
15 | |
---|
16 | interface Session : Bonobo::Unknown { |
---|
17 | exception Failed {}; |
---|
18 | |
---|
19 | /** |
---|
20 | * saveConfiguration: |
---|
21 | * @prefix: A configuration path prefix. |
---|
22 | * |
---|
23 | * Save the current configuration at the specified @prefix. |
---|
24 | * The component can use any path starting by @prefix for its |
---|
25 | * keys. |
---|
26 | */ |
---|
27 | void saveConfiguration (in string prefix) |
---|
28 | raises (Failed); |
---|
29 | |
---|
30 | /** |
---|
31 | * loadConfiguration: |
---|
32 | * @prefix: A configuration path prefix. |
---|
33 | * |
---|
34 | * Load the saved configuration at the specified @prefix. |
---|
35 | */ |
---|
36 | void loadConfiguration (in string prefix) |
---|
37 | raises (Failed); |
---|
38 | }; |
---|
39 | |
---|
40 | }; |
---|
41 | }; |
---|
Note: See
TracBrowser
for help on using the repository browser.