Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / StyleSheet / VariableTable.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: VariableTable.h /main/4 1996/08/21 15:51:00 drk $ */
24 #ifndef _VariableTable_h
25 #define _VariableTable_h
26
27 #include "SymTab.h"
28 #include "Expression.h"
29
30 #ifndef CDE_NEXT
31
32 #else
33 #include "dti_cc/cc_hdict.h"
34 #endif
35
36 class VariableTable : private hashTable<Symbol, Expression>
37 {
38 public:
39   VariableTable();
40   ~VariableTable();
41
42   unsigned int  exists(const Symbol &name) const; 
43   void          enter (const Symbol &name, Expression *value);
44   const Expression  &lookup(const Symbol &name) const;
45
46   ostream &print(ostream &) const;
47
48 };
49
50 ostream &operator <<(ostream &o, const VariableTable &v);
51
52 #endif /* _VariableTable_h */
53 /* DO NOT ADD ANY LINES AFTER THIS #endif */