aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/parser/codemodel.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-22 10:19:43 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-29 09:46:16 +0000
commit16e5f4710e16aec6c46e3f9736f0be3cef3a537d (patch)
tree0f6ee7e2043303d27adb163f830d11b6caa6cd05 /sources/shiboken2/ApiExtractor/parser/codemodel.h
parent4a4ad11a730a06cef69bea0b5d22d8f2e7337a52 (diff)
Use information about Constructor/Destructor functions from Clang
Expand CodeModel::FunctionType accordingly. Change-Id: I2759f45e4c60f36d4583b1c475c4c2df1e00ace6 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/shiboken2/ApiExtractor/parser/codemodel.h')
-rw-r--r--sources/shiboken2/ApiExtractor/parser/codemodel.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel.h b/sources/shiboken2/ApiExtractor/parser/codemodel.h
index ea16e6912..4d6bfd06a 100644
--- a/sources/shiboken2/ApiExtractor/parser/codemodel.h
+++ b/sources/shiboken2/ApiExtractor/parser/codemodel.h
@@ -56,6 +56,10 @@ public:
enum FunctionType {
Normal,
+ Constructor,
+ CopyConstructor,
+ MoveConstructor,
+ Destructor,
Signal,
Slot
};