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 */
12
13// File: http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113/views.idl
14
15#ifndef _VIEWS_IDL_
16#define _VIEWS_IDL_
17
18#include "dom.idl"
19
20#pragma prefix "dom.w3c.org"
21module views
22{
23
24  interface DocumentView;
25
26  // Introduced in DOM Level 2:
27  interface AbstractView {
28    readonly attribute DocumentView     document;
29  };
30
31  // Introduced in DOM Level 2:
32  interface DocumentView {
33    readonly attribute AbstractView     defaultView;
34  };
35};
36
37#endif // _VIEWS_IDL_
38
39