diff options
author | sb <sb@openoffice.org> | 2010-09-22 13:37:40 +0200 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-09-22 13:37:40 +0200 |
commit | e945ff4a192fe8aad64750933f8fa44ccb74f522 (patch) | |
tree | c58c1946793b03142625dc350c8349ea8c8bedb4 /basic/source/inc/parser.hxx | |
parent | 56c2cd6dc5b2545336ee0777a81132d2fed2d973 (diff) | |
parent | bd1092ebc0b329883d1c079d598a73f3af4cd548 (diff) |
sb126: merged in DEV300_m88
Diffstat (limited to 'basic/source/inc/parser.hxx')
-rw-r--r-- | basic/source/inc/parser.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/basic/source/inc/parser.hxx b/basic/source/inc/parser.hxx index 1161c4ed259d..733a65db7f61 100644 --- a/basic/source/inc/parser.hxx +++ b/basic/source/inc/parser.hxx @@ -34,7 +34,7 @@ #include <vector> -typedef ::std::vector< String > IfaceVector; +typedef ::std::vector< String > StringVector; struct SbiParseStack; @@ -81,7 +81,8 @@ public: BOOL bText; // OPTION COMPARE TEXT BOOL bExplicit; // TRUE: OPTION EXPLICIT BOOL bClassModule; // TRUE: OPTION ClassModule - IfaceVector aIfaceVector; // Holds all interfaces implemented by a class module + StringVector aIfaceVector; // Holds all interfaces implemented by a class module + StringVector aRequiredTypes; // Types used in Dim As New <type> outside subs SbxDataType eDefTypes[26]; // DEFxxx-Datentypen SbiParser( StarBASIC*, SbModule* ); |