umbrello  2.31.3
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
pascalimport.h
Go to the documentation of this file.
1 /***************************************************************************
2  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  * copyright (C) 2006-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef PASCALIMPORT_H
12 #define PASCALIMPORT_H
13 
14 #include "nativeimportbase.h"
15 
22 {
23 public:
24  explicit PascalImport(CodeImpThread* thread = 0);
25  virtual ~PascalImport();
26 
27 protected:
28  void initVars();
29 
30  bool parseStmt();
31 
32  void fillSource(const QString& word);
33 
34  void checkModifiers(bool& isVirtual, bool& isAbstract);
35 
37 
40 
42 };
43 
44 #endif
45 
void fillSource(const QString &word)
Definition: pascalimport.cpp:60
Base class for native implementations of language import.
Definition: nativeimportbase.h:44
Definition: pascalimport.h:38
Definition: pascalimport.h:21
Definition: pascalimport.h:38
void initVars()
Definition: pascalimport.cpp:50
PascalImport(CodeImpThread *thread=0)
Definition: pascalimport.cpp:33
Definition: pascalimport.h:39
Section_Type
Definition: pascalimport.h:38
Definition: pascalimport.h:38
Definition: pascalimport.h:39
virtual ~PascalImport()
Definition: pascalimport.cpp:43
bool m_inInterface
becomes true when keyword "interface" is seen
Definition: pascalimport.h:36
bool parseStmt()
Definition: pascalimport.cpp:116
void checkModifiers(bool &isVirtual, bool &isAbstract)
Definition: pascalimport.cpp:91
Definition: codeimpthread.h:35
Definition: pascalimport.h:39
Section_Type m_section
contains the current section
Definition: pascalimport.h:41
Definition: pascalimport.h:38