Link with C++ linker
[oweals/cde.git] / cde / programs / nsgmls / Id.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: Id.h /main/1 1996/07/29 16:54:38 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef Id_INCLUDED
28 #define Id_INCLUDED 1
29
30 #ifdef __GNUG__
31 #pragma interface
32 #endif
33
34 #include "Named.h"
35 #include "Location.h"
36 #include "Vector.h"
37
38 #ifdef SP_NAMESPACE
39 namespace SP_NAMESPACE {
40 #endif
41
42 class Id : public Named {
43 public:
44   Id(const StringC &);
45   void define(const Location &);
46   void addPendingRef(const Location &);
47   Boolean defined() const;
48   const Location &defLocation() const;
49   const Vector<Location> &pendingRefs() const;
50 private:
51   Location defLocation_;
52   Vector<Location> pendingRefs_;
53 };
54
55 inline
56 Boolean Id::defined() const
57 {
58   return !defLocation_.origin().isNull();
59 }
60
61 inline
62 const Location &Id::defLocation() const
63 {
64   return defLocation_;
65 }
66
67 inline
68 const Vector<Location> &Id::pendingRefs() const
69 {
70   return pendingRefs_;
71 }
72
73 inline
74 void Id::addPendingRef(const Location &loc)
75 {
76   pendingRefs_.push_back(loc);
77 }
78
79 #ifdef SP_NAMESPACE
80 }
81 #endif
82
83 #endif /* not Id_INCLUDED */