umbrello  2.32.0
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
phpimport.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) 2017-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef PHPIMPORT_H
12 #define PHPIMPORT_H
13 
14 #include "classimport.h"
15 
16 #include <QString>
17 
18 class PHPImportPrivate;
19 
25 class PHPImport : public ClassImport
26 {
27 public:
28  explicit PHPImport(CodeImpThread* thread = 0);
29  virtual ~PHPImport();
30 
31 protected:
32  void initialize();
33  void initPerFile();
34  bool parseFile(const QString& fileName);
35 
36 private:
37  void feedTheModel(const QString& fileName);
39 };
40 
41 #endif
Definition: classimport.h:26
Definition: codeimpthread.h:36
Definition: phpimport.cpp:674
Definition: phpimport.h:26
void feedTheModel(const QString &fileName)
Definition: phpimport.cpp:769
void initialize()
Definition: phpimport.cpp:786
PHPImport(CodeImpThread *thread=0)
Definition: phpimport.cpp:747
bool parseFile(const QString &fileName)
Definition: phpimport.cpp:801
virtual ~PHPImport()
Definition: phpimport.cpp:756
PHPImportPrivate * m_d
Definition: phpimport.h:38
void initPerFile()
Definition: phpimport.cpp:793