Build with non-standard boost locations.
[kdepim.git] / messagecore / globalsettings.h
blob7836e1b6c9d9a00b4e9444e2ce693deb7038501f
1 /* Copyright 2010 Thomas McGuire <mcguire@kde.org>
3 This library is free software; you can redistribute it and/or modify
4 it under the terms of the GNU Library General Public License as published
5 by the Free Software Foundation; either version 2 of the License or
6 ( at your option ) version 3 or, at the discretion of KDE e.V.
7 ( which shall act as a proxy as in section 14 of the GPLv3 ), any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
19 #ifndef MESSAGECORE_GLOBALSETTINGS_H
20 #define MESSAGECORE_GLOBALSETTINGS_H
22 #include "messagecore_export.h"
24 #include "messagecore/globalsettings_base.h"
26 namespace MessageCore {
28 class MESSAGECORE_EXPORT GlobalSettings : public MessageCore::GlobalSettingsBase
30 Q_OBJECT
31 public:
32 static GlobalSettings *self();
34 private:
35 GlobalSettings();
36 virtual ~GlobalSettings();
37 static GlobalSettings *mSelf;
42 #endif