Fix typo in license headers
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / StyleSheet / RendererHCV.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 libraries 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: RendererHCV.h /main/3 1996/06/11 17:08:17 cde-hal $ */
24
25 #ifndef _RendererHCV_h
26 #define _RendererHCV_h 1
27
28 #include "Renderer.h"
29 #include "HardCopy/autoNumberFP.h"
30
31 //   RendererHCV class is a simplified hardcopy renderer responsible 
32 //   for evaluating feature values specific to hardcopy engine. The
33 //   feature values are used by the validator.
34
35 class RendererHCV : public Renderer 
36 {
37 public:
38   RendererHCV()  {};
39   ~RendererHCV() ;
40
41   FeatureSet *initialize() { return 0; };
42
43   unsigned int
44     BeginElement(const Element       &element,
45                  const FeatureSet    &featureset,
46                  const FeatureSet    &complete,
47                  const FeatureSet    &parentComplete) { return 0; };
48
49
50   void data(const char *data, unsigned int size) {} ;
51   void EndElement(const Symbol &element_name) {};
52   void Begin() {};
53   void End() {};
54
55 // These two functions allow a renderer to set up internal variable table.
56   unsigned int accept(const char*, const Expression*) ;
57   FeatureValue* evaluate(const char*) ;
58   void preEvaluate(const Element &) {};
59   void postEvaluate(const Element &) {}; 
60
61 protected:
62   autoNumberFP f_autoNumberFP;
63 };
64
65 #endif
66