-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdeclinfo.h
33 lines (28 loc) · 1.08 KB
/
declinfo.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/************************************************************************
*
* Copyright (c) 2014-2025 Barbara Geller & Ansel Sermersheim
*
* Copyright (c) 1997-2014 Dimitri van Heesch
*
* DoxyPress is free software. You can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* DoxyPress is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* Documents produced by DoxyPress are derivative works derived from the
* input used in their production; they are not affected by this license.
*
* https://www.gnu.org/licenses/
*
*************************************************************************/
#ifndef DECLINFO_H
#define DECLINFO_H
#include <types.h>
#include <QString>
#include <stdio.h>
extern void parseFuncDecl(const QString &decl, SrcLangExt lang, QString &clName, QString &type,
QString &name, QString &args, QString &funcTempList, QString &exceptions);
#endif