Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / nsgmls / TokenMessageArg.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: TokenMessageArg.h /main/1 1996/07/29 17:06:23 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef TokenMessageArg_INCLUDED
28 #define TokenMessageArg_INCLUDED 1
29 #ifdef __GNUG__
30 #pragma interface
31 #endif
32
33 #include "MessageArg.h"
34 #include "types.h"
35 #include "Mode.h"
36 #include "Syntax.h"
37 #include "Sd.h"
38 #include "Ptr.h"
39
40 #ifdef SP_NAMESPACE
41 namespace SP_NAMESPACE {
42 #endif
43
44 class TokenMessageArg : public MessageArg {
45 public:
46   TokenMessageArg(Token token, Mode mode,
47                   const ConstPtr<Syntax> &syntax,
48                   const ConstPtr<Sd> &sd);
49   MessageArg *copy() const;
50   void append(MessageBuilder &) const;
51 private:
52   Token token_;
53   Mode mode_;
54   ConstPtr<Syntax> syntax_;
55   ConstPtr<Sd> sd_;
56 };
57
58 #ifdef SP_NAMESPACE
59 }
60 #endif
61
62 #endif /* not TokenMessageArg_INCLUDED */