Fix typo in license headers
[oweals/cde.git] / cde / programs / nsgmls / ErrorCountEventHandler.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: ErrorCountEventHandler.h /main/1 1996/07/29 16:51:11 cde-hp $ */
24 // Copyright (c) 1996 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef ErrorCountEventHandler_INCLUDED
28 #define ErrorCountEventHandler_INCLUDED 1
29
30 #ifdef __GNUG__
31 #pragma interface
32 #endif
33
34 #include <signal.h>
35 #include "Event.h"
36
37 #ifdef SP_NAMESPACE
38 namespace SP_NAMESPACE {
39 #endif
40
41 class SP_API ErrorCountEventHandler : public EventHandler {
42 public:
43   ErrorCountEventHandler(unsigned errorLimit = 0);
44   void setErrorLimit(unsigned maxErrors);
45   const sig_atomic_t *cancelPtr() const;
46   void cancel();
47   Boolean cancelled() const;
48   unsigned errorCount() const;
49   void message(MessageEvent *);
50   void noteMessage(const Message &);
51 private:
52   unsigned maxErrors_;
53   unsigned errorCount_;
54   sig_atomic_t cancel_;
55 };
56
57 inline
58 unsigned ErrorCountEventHandler::errorCount() const
59 {
60   return errorCount_;
61 }
62
63 inline
64 const sig_atomic_t *ErrorCountEventHandler::cancelPtr() const
65 {
66   return &cancel_;
67 }
68
69 inline
70 void ErrorCountEventHandler::cancel()
71 {
72   cancel_ = 1;
73 }
74
75 inline
76 void ErrorCountEventHandler::setErrorLimit(unsigned maxErrors)
77 {
78   maxErrors_ = maxErrors;
79 }
80
81 inline
82 Boolean ErrorCountEventHandler::cancelled() const
83 {
84   return cancel_ != 0;
85 }
86
87 #ifdef SP_NAMESPACE
88 }
89 #endif
90
91 #endif /* not ErrorCountEventHandler_INCLUDED */