blob: 25ec63de9b29731a3ece59b404fded8a542de5f3 (
plain) (
blame)
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
|
/*-*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* CORBA interface for an HTML view.
*
* Authors:
* Iain Holmes <iain@helixcode.com>
*
* Copyright (C) 2000 Helix Code, Inc.
*/
#include <Bonobo.idl>
module GNOME {
module Evolution {
module Summary {
interface HTMLView : Bonobo::Unknown {
string getHtml ();
void handleURI (in string uri);
};
};
};
};
|