umbrello 2.34.70-5524f40e1
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 SPDX-License-Identifier: GPL-2.0-or-later
3 SPDX-FileCopyrightText: 2017-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4*/
5
6#ifndef PHPIMPORT_H
7#define PHPIMPORT_H
8
9#include "classimport.h"
10
11#include <QString>
12
14
20class PHPImport : public ClassImport
21{
22public:
23 explicit PHPImport(CodeImpThread* thread = 0);
24 virtual ~PHPImport();
25
26protected:
27 void initialize();
28 void initPerFile();
29 bool parseFile(const QString& fileName);
30
31private:
32 void feedTheModel(const QString& fileName);
34};
35
36#endif
Definition: classimport.h:21
Definition: codeimpthread.h:22
Definition: phpimport.cpp:680
Definition: phpimport.h:21
void feedTheModel(const QString &fileName)
Definition: phpimport.cpp:776
void initialize()
Definition: phpimport.cpp:793
PHPImport(CodeImpThread *thread=0)
Definition: phpimport.cpp:754
bool parseFile(const QString &fileName)
Definition: phpimport.cpp:808
virtual ~PHPImport()
Definition: phpimport.cpp:763
PHPImportPrivate * m_d
Definition: phpimport.h:33
void initPerFile()
Definition: phpimport.cpp:800