Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / dtinfogen / infolib / etc / AttributeRec.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: AttributeRec.h /main/3 1996/08/21 15:46:05 drk $ */
24
25 //----------------------------------------------
26 // AttributeRec.h
27
28 #ifndef ATT_REC_HDR
29 #define ATT_REC_HDR
30
31 #include "SGMLName.h"
32
33 class SGMLDefn;
34
35 class AttributeRec {
36
37 friend class OL_AttributeList;
38 friend class Token;
39   
40 private:
41   
42   int attName;
43   int attType;
44   const char *attValueString;
45   char  *copy;
46   int  attValue;
47   AttributeRec *next;
48   
49 protected:
50   AttributeRec( const char * name, const char *value,
51                 int type );
52   ~AttributeRec();
53
54 public:  
55   int getAttrName() const;
56
57   /* use this for CDATA attributes */
58   const char *getAttrValueString() const { return(attValueString); }
59
60   /* use this for NAME, NOTATION, ENTITY attributes */
61   int   getAttValue()        const    { return(attValue); } 
62
63   int getAttrType() const    { return(attType); }
64
65   int operator== ( AttributeRec & s ) {
66     return ( attName == s.attName );
67   }
68 };
69
70 #endif