Last change
on this file since 5679 was
5679,
checked in by ldelgass, 9 years ago
|
Full merge 1.3 branch to uq branch to sync. Fixed partial subdirectory merge
by removing mergeinfo from lang/python/Rappture directory.
|
-
Property svn:eol-style set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | /** |
---|
2 | * |
---|
3 | * @file xtree.h |
---|
4 | * @author Aleix Conchillo Flaque <aleix@member.fsf.org> |
---|
5 | * @date Thu Feb 20, 2003 23:48 |
---|
6 | * @brief SCEW private tree type declaration |
---|
7 | * |
---|
8 | * $Id: xtree.h,v 1.1 2004/01/28 00:43:21 aleix Exp $ |
---|
9 | * |
---|
10 | * @if copyright |
---|
11 | * |
---|
12 | * Copyright (C) 2003, 2004 Aleix Conchillo Flaque |
---|
13 | * |
---|
14 | * SCEW is free software; you can redistribute it and/or |
---|
15 | * modify it under the terms of the GNU Lesser General Public |
---|
16 | * License as published by the Free Software Foundation; either |
---|
17 | * version 2.1 of the License, or (at your option) any later version. |
---|
18 | * |
---|
19 | * SCEW is distributed in the hope that it will be useful, |
---|
20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
22 | * Lesser General Public License for more details. |
---|
23 | * |
---|
24 | * You should have received a copy of the GNU Lesser General Public |
---|
25 | * License along with this library; if not, write to the Free Software |
---|
26 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
27 | * |
---|
28 | * @endif |
---|
29 | */ |
---|
30 | |
---|
31 | |
---|
32 | #ifndef XTREE_H_ALEIX0302202348 |
---|
33 | #define XTREE_H_ALEIX0302202348 |
---|
34 | |
---|
35 | #include "tree.h" |
---|
36 | |
---|
37 | #include "xelement.h" |
---|
38 | |
---|
39 | struct _scew_tree |
---|
40 | { |
---|
41 | XML_Char* version; |
---|
42 | XML_Char* encoding; |
---|
43 | XML_Char* preamble; |
---|
44 | int standalone; |
---|
45 | scew_element* root; |
---|
46 | }; |
---|
47 | |
---|
48 | #endif /* XTREE_H_ALEIX0302202348 */ |
---|
Note: See
TracBrowser
for help on using the repository browser.