1 | /* |
---|---|
2 | This file is part of the KFileMetaData project |
3 | SPDX-FileCopyrightText: 2016 Varun Joshi <varunj.1011@gmail.com> |
4 | SPDX-FileCopyrightText: 2016 Vishesh Handa <me@vhanda.in> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
7 | */ |
8 | |
9 | #include "writerplugin.h" |
10 | |
11 | |
12 | using namespace KFileMetaData; |
13 | |
14 | WriterPlugin::WriterPlugin(QObject* parent): QObject(parent) |
15 | { |
16 | } |
17 | |
18 | WriterPlugin::~WriterPlugin() |
19 | { |
20 | } |
21 | |
22 | #include "moc_writerplugin.cpp" |
23 |