1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date        : 2019-07-06
7  * Description : Autodetect outlook binary program
8  *
9  * Copyright (C) 2020 by Gilles Caulier <caulier dot gilles at gmail dot com>
10  * Copyright (C) 2019 by Maik Qualmann <metzpinguin at gmail dot com>
11  *
12  * This program is free software; you can redistribute it
13  * and/or modify it under the terms of the GNU General
14  * Public License as published by the Free Software Foundation;
15  * either version 2, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #include "outlookbinary.h"
25 
26 // KDE includes
27 
28 #include <klocalizedstring.h>
29 
30 namespace Digikam
31 {
32 
OutlookBinary(QObject * const)33 OutlookBinary::OutlookBinary(QObject* const)
34     : DBinaryIface(
35                    QLatin1String("outlook"),
36                    QLatin1String("Outlook"),
37                    QLatin1String("https://www.microsoft.com/"),
38                    QLatin1String("SendByMail"),
39                    QStringList(),
40                    i18n("Outlook Mail Client.")
41                   )
42  {
43      setup();
44  }
45 
~OutlookBinary()46 OutlookBinary::~OutlookBinary()
47 {
48 }
49 
50 } // namespace Digikam
51