/* ============================================================ * * This file is a part of digiKam project * https://www.digikam.org * * Date : 2019-07-06 * Description : Autodetect outlook binary program * * Copyright (C) 2020 by Gilles Caulier * Copyright (C) 2019 by Maik Qualmann * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General * Public License as published by the Free Software Foundation; * either version 2, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * ============================================================ */ #include "outlookbinary.h" // KDE includes #include namespace Digikam { OutlookBinary::OutlookBinary(QObject* const) : DBinaryIface( QLatin1String("outlook"), QLatin1String("Outlook"), QLatin1String("https://www.microsoft.com/"), QLatin1String("SendByMail"), QStringList(), i18n("Outlook Mail Client.") ) { setup(); } OutlookBinary::~OutlookBinary() { } } // namespace Digikam