coan  6.0.1
A C/C++ Configuration Analyzer
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
line_type.h
Go to the documentation of this file.
1 #ifndef LINE_TYPE_H
2 #define LINE_TYPE_H
3 #pragma once
4 /***************************************************************************
5  * Copyright (C) 2004, 2006 Symbian Software Ltd. *
6  * All rights reserved. *
7  * Copyright (C) 2002, 2003 Tony Finch <dot@dotat.at>. *
8  * All rights reserved. *
9  * Copyright (C) 1985, 1993 The Regents of the University of California. *
10  * All rights reserved. *
11  * Copyright (C) 2007-2013 Mike Kinghan, imk@burroingroingjoing.com *
12  * All rights reserved. *
13  * *
14  * Contributed by Mike Kinghan, imk@burroingroingjoing.com, *
15  * derived from the code of Tony Finch *
16  * *
17  * Redistribution and use in source and binary forms, with or without *
18  * modification, are permitted provided that the following conditions *
19  * are met: *
20  * *
21  * Redistributions of source code must retain the above copyright *
22  * notice, this list of conditions and the following disclaimer. *
23  * *
24  * Redistributions in binary form must reproduce the above copyright *
25  * notice, this list of conditions and the following disclaimer in the *
26  * documentation and/or other materials provided with the distribution. *
27  * *
28  * Neither the name of Symbian Software Ltd. nor the names of its *
29  * contributors may be used to endorse or promote products derived from *
30  * this software without specific prior written permission. *
31  * *
32  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
33  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT *
34  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS *
35  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE *
36  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, *
37  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, *
38  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS *
39  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED *
40  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,*
41  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF *
42  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH *
43  * DAMAGE. *
44  * *
45  **************************************************************************/
46 
51 enum line_type {
79 };
80 
81 #endif // EOF
82 
83 
A directive line of no more specific type that is to be kept.
Definition: line_type.h:76
A true #elif
Definition: line_type.h:62
A false #if
Definition: line_type.h:58
End of file.
Definition: line_type.h:72
A true #if
Definition: line_type.h:56
A false #elif
Definition: line_type.h:64
A directive line of no more specific type than that is to be dropped.
Definition: line_type.h:74
An #else that we can't resolve.
Definition: line_type.h:66
An #endif
Definition: line_type.h:68
Sentinel.
Definition: line_type.h:78
line_type
Enumeration of types of input lines.
Definition: line_type.h:52
A non-directive line.
Definition: line_type.h:70
An #elif that we can't resolve.
Definition: line_type.h:60
An #if that we can't resolve.
Definition: line_type.h:54