Link with C++ linker
[oweals/cde.git] / cde / programs / nsgmls / ParserOptions.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: ParserOptions.h /main/1 1996/07/29 17:01:15 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef ParserOptions_INCLUDED
28 #define ParserOptions_INCLUDED 1
29 #ifdef __GNUG__
30 #pragma interface
31 #endif
32
33 #include "types.h"
34 #include "EventsWanted.h"
35 #include "Vector.h"
36 #include "StringC.h"
37
38 #ifdef SP_NAMESPACE
39 namespace SP_NAMESPACE {
40 #endif
41
42 struct SP_API ParserOptions {
43   ParserOptions();
44   EventsWanted eventsWanted;
45   PackedBoolean datatag;
46   PackedBoolean omittag;
47   PackedBoolean rank;
48   PackedBoolean shorttag;
49   Number linkSimple;
50   PackedBoolean linkImplicit;
51   Number linkExplicit;
52   Number concur;
53   Number subdoc;
54   PackedBoolean formal;
55   PackedBoolean shortref;
56   enum Quantity {
57     ATTCNT,
58     ATTSPLEN,
59     BSEQLEN,
60     DTAGLEN,
61     DTEMPLEN,
62     ENTLVL,
63     GRPCNT,
64     GRPGTCNT,
65     GRPLVL,
66     LITLEN,
67     NAMELEN,
68     NORMSEP,
69     PILEN,
70     TAGLEN,
71     TAGLVL
72   };
73   enum { nQuantity = TAGLVL + 1 };
74   Number quantity[nQuantity];
75   PackedBoolean errorIdref;
76   PackedBoolean errorSignificant;
77   PackedBoolean errorAfdr;      // error if AFDR extensions are used
78   PackedBoolean errorLpdNotation;
79   PackedBoolean warnSgmlDecl;
80   PackedBoolean warnDuplicateEntity;
81   PackedBoolean warnShould;
82   PackedBoolean warnUndefinedElement;
83   PackedBoolean warnDefaultEntityReference;
84   PackedBoolean warnMixedContent;
85   PackedBoolean warnUnclosedTag;
86   PackedBoolean warnNet;
87   PackedBoolean warnEmptyTag;
88   PackedBoolean warnUnusedMap;
89   PackedBoolean warnUnusedParam;
90   PackedBoolean warnNotationSystemId;
91   Vector<StringC> includes;
92 };
93
94 #ifdef SP_NAMESPACE
95 }
96 #endif
97
98 #endif /* not ParserOptions_INCLUDED */