Link with C++ linker
[oweals/cde.git] / cde / programs / nsgmls / EntityDecl.C
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: EntityDecl.C /main/1 1996/07/29 16:50:24 cde-hp $ */
24 // Copyright (c) 1995 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifdef __GNUG__
28 #pragma implementation
29 #endif
30 #include "splib.h"
31 #include "EntityDecl.h"
32
33 #ifdef SP_NAMESPACE
34 namespace SP_NAMESPACE {
35 #endif
36
37 EntityDecl::EntityDecl(const StringC &str, DeclType declType, DataType dataType,
38                        const Location &defLocation)
39 : NamedResource(str), declType_(declType), dataType_(dataType),
40   defLocation_(defLocation), dtdIsBase_(0), lpdIsActive_(0)
41 {
42 }
43
44 void EntityDecl::setDeclIn(const ConstPtr<StringResource<Char> > &dtdName,
45                            Boolean dtdIsBase,
46                            const ConstPtr<StringResource<Char> > &lpdName,
47                            Boolean lpdIsActive)
48 {
49   dtdName_ = dtdName;
50   lpdName_ = lpdName;
51   dtdIsBase_ = dtdIsBase;
52   lpdIsActive_ = lpdIsActive;
53 }
54
55 void EntityDecl::setDeclIn(const ConstPtr<StringResource<Char> > &dtdName,
56                            Boolean dtdIsBase)
57 {
58   dtdName_ = dtdName;
59   lpdName_.clear();
60   dtdIsBase_ = dtdIsBase;
61 }
62
63 const StringC *EntityDecl::systemIdPointer() const
64 {
65   return 0;
66 }
67
68 const StringC *EntityDecl::publicIdPointer() const
69 {
70   return 0;
71 }
72
73 const StringC *EntityDecl::effectiveSystemIdPointer() const
74 {
75   return 0;
76 }
77
78
79 #ifdef SP_NAMESPACE
80 }
81 #endif