File indexing completed on 2024-06-09 04:26:40

0001 /*
0002  *  SPDX-FileCopyrightText: 2012 Sven Langkamp <sven.langkamp@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef COMPOSITIONDOCKER_H
0008 #define COMPOSITIONDOCKER_H
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 
0014 /**
0015  * Docker compositions of the image
0016  */
0017 class CompositionDockerPlugin : public QObject
0018 {
0019     Q_OBJECT
0020 public:
0021     CompositionDockerPlugin(QObject *parent, const QVariantList &);
0022     ~CompositionDockerPlugin() override;
0023 };
0024 
0025 #endif