/* SPDX-FileCopyrightText: 2005 Tobias Koenig SPDX-License-Identifier: MIT */ #ifndef KWSDL_COMPILER_H #define KWSDL_COMPILER_H #include #include namespace KWSDL { // clazy:excludeall=ctor-missing-parent-argument class Compiler : public QObject { Q_OBJECT public: Compiler(); // created on stack public slots: void run(); private slots: void download(); void parse(const QDomElement &); }; } #endif