File indexing completed on 2024-04-28 08:47:34

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2008-2009 Mehrdad Momeny <mehrdad.momeny@gmail.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #include "uploader.h"
0010 
0011 namespace Choqok
0012 {
0013 
0014 Choqok::Uploader::Uploader(const QString &componentName, QObject *parent)
0015     : Plugin(componentName, parent)
0016 {
0017 
0018 }
0019 
0020 Choqok::Uploader::~Uploader()
0021 {}
0022 
0023 }
0024 
0025 #include "moc_uploader.cpp"