Code

7ae0c50a7c19b0bd4abb834d61095458d88c2715
[inkscape.git] / views.idl
1 /*
2  * Copyright (c) 2000 World Wide Web Consortium,
3  * (Massachusetts Institute of Technology, Institut National de
4  * Recherche en Informatique et en Automatique, Keio University). All
5  * Rights Reserved. This program is distributed under the W3C's Software
6  * Intellectual Property License. This program is distributed in the
7  * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
8  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  * PURPOSE.
10  * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
11  */
13 // File: http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113/views.idl
15 #ifndef _VIEWS_IDL_
16 #define _VIEWS_IDL_
18 #include "dom.idl"
20 #pragma prefix "dom.w3c.org"
21 module views
22 {
24   interface DocumentView;
26   // Introduced in DOM Level 2:
27   interface AbstractView {
28     readonly attribute DocumentView     document;
29   };
31   // Introduced in DOM Level 2:
32   interface DocumentView {
33     readonly attribute AbstractView     defaultView;
34   };
35 };
37 #endif // _VIEWS_IDL_