Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / StyleSheet / ResolverStack.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: ResolverStack.h /main/4 1996/08/21 15:50:41 drk $ */
24 #ifndef _ResolverStack_h
25 #define _ResolverStack_h
26
27 #ifndef CDE_NEXT
28
29 #else
30 //#include <StyleSheet/cde_next.h>
31 #include "dti_cc/CC_Dlist.h"
32 #endif
33
34 class Element ;
35 class FeatureSet ;
36
37 class ResolverStackElement 
38 {
39 public:
40   // note, this object will delete these items in its destructor
41   ResolverStackElement(Element*,
42                        FeatureSet *local,
43                        FeatureSet *complete);
44
45   ~ResolverStackElement();
46
47   int
48   operator==(const ResolverStackElement &);
49
50   // only pass out references because we own these guys 
51   FeatureSet &completeFeatureSet()      { return *f_completeFeatureSet ; }
52   FeatureSet &localFeatureSet()         { return *f_localFeatureSet ; }
53   Element    &element()                 { return *f_element ; }
54   
55 private:
56   Element      *f_element;
57   FeatureSet   *f_localFeatureSet;
58   FeatureSet   *f_completeFeatureSet;
59 };
60
61 class ResolverStack : private CC_TPtrDlist<ResolverStackElement>
62 {
63
64 public:
65   ResolverStack();
66   ~ResolverStack();
67
68   void push(ResolverStackElement*);
69   ResolverStackElement* pop();
70   ResolverStackElement* top();
71 };
72
73
74 #endif /* _ResolverStack_h */
75 /* DO NOT ADD ANY LINES AFTER THIS #endif */