Doxygen
Toggle main menu visibility
Loading...
Searching...
No Matches
sqlcode.h
Go to the documentation of this file.
1
/******************************************************************************
2
*
3
* Copyright (C) 1997-2020 by Dimitri van Heesch.
4
*
5
* Permission to use, copy, modify, and distribute this software and its
6
* documentation under the terms of the GNU General Public License is hereby
7
* granted. No representations are made about the suitability of this software
8
* for any purpose. It is provided "as is" without express or implied warranty.
9
* See the GNU General Public License for more details.
10
*
11
* Documents produced by Doxygen are derivative works derived from the
12
* input used in their production; they are not affected by this license.
13
*
14
*/
15
16
17
#ifndef SQLCODE_H
18
#define SQLCODE_H
19
20
#include "
parserintf.h
"
21
22
class
FileDef
;
23
class
MemberDef
;
24
class
QCString
;
25
class
Definition
;
26
27
/** SQL scanner. Only support syntax highlighting of code at the moment.
28
*/
29
class
SQLCodeParser
:
public
CodeParserInterface
30
{
31
public
:
32
SQLCodeParser
();
33
~SQLCodeParser
()
override
;
34
NON_COPYABLE
(
SQLCodeParser
)
35
36
void
parseCode
(
OutputCodeList
&codeOutIntf,
37
const
QCString
&scopeName,
38
const
QCString
&input,
39
SrcLangExt
,
40
bool
stripCodeComments,
41
const
CodeParserOptions
&options
42
)
override
;
43
void
resetCodeParserState
()
override
;
44
private
:
45
struct
Private
;
46
std::unique_ptr<Private>
p
;
47
};
48
49
50
#endif
CodeParserInterface
Abstract interface for code parsers.
Definition
parserintf.h:142
Definition
The common base class of all entity definitions found in the sources.
Definition
definition.h:77
FileDef
A model of a file symbol.
Definition
filedef.h:99
MemberDef
A model of a class/file/namespace member symbol.
Definition
memberdef.h:48
OutputCodeList
Class representing a list of different code generators.
Definition
outputlist.h:165
QCString
This is an alternative implementation of QCString.
Definition
qcstring.h:101
SQLCodeParser::p
std::unique_ptr< Private > p
Definition
sqlcode.h:46
SQLCodeParser::resetCodeParserState
void resetCodeParserState() override
Resets the state of the code parser.
Definition
sqlcode.l:401
SQLCodeParser::parseCode
void parseCode(OutputCodeList &codeOutIntf, const QCString &scopeName, const QCString &input, SrcLangExt, bool stripCodeComments, const CodeParserOptions &options) override
Parses a source file or fragment with the goal to produce highlighted and cross-referenced output.
Definition
sqlcode.l:408
SQLCodeParser::SQLCodeParser
SQLCodeParser()
Definition
sqlcode.l:387
SQLCodeParser::~SQLCodeParser
~SQLCodeParser() override
Definition
sqlcode.l:396
NON_COPYABLE
#define NON_COPYABLE(cls)
Macro to help implementing the rule of 5 for a non-copyable & movable class.
Definition
construct.h:37
parserintf.h
CodeParserOptions
Options to configure the code parser.
Definition
parserintf.h:78
SQLCodeParser::Private
Definition
sqlcode.l:382
SrcLangExt
SrcLangExt
Definition
types.h:207
src
sqlcode.h
Generated by
1.17.0