diff options
Diffstat (limited to 'src/entry.h')
-rw-r--r-- | src/entry.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/entry.h b/src/entry.h index 1494bae..7736be7 100644 --- a/src/entry.h +++ b/src/entry.h @@ -23,6 +23,7 @@ enum Protection { Public, Protected, Private } ; enum Specifier { Normal, Virtual, Pure } ; +enum MethodTypes { Method, Signal, Slot, DCOP }; struct BaseInfo { @@ -161,8 +162,9 @@ class Entry int section; // entry type (see Sections); Protection protection; // class protection - bool sig; // a Qt signal ? - bool slot; // a Qt slot ? + //bool sig; // a Qt signal ? + //bool slot; // a Qt slot ? + MethodTypes mtype; // signal, slot or dcop method? bool stat; // static ? bool explicitExternal; // explicitly defined as external? bool proto; // prototype ? |