File indexing completed on 2025-01-05 04:54:19

0001 /*******************************************************************
0002  KNotes -- Notes for the KDE project
0003 
0004  SPDX-FileCopyrightText: 1997-2013 The KNotes Developers
0005 
0006  SPDX-License-Identifier: GPL-2.0-or-later
0007 *******************************************************************/
0008 
0009 #pragma once
0010 
0011 #include <KontactInterface/PimUniqueApplication>
0012 
0013 class KNotesApp;
0014 
0015 class Application : public KontactInterface::PimUniqueApplication
0016 {
0017     Q_OBJECT
0018 public:
0019     Application(int &argc, char **argv[]);
0020     ~Application() override;
0021 
0022     int activate(const QStringList &args, const QString &workingDir) override;
0023 
0024 private:
0025     KNotesApp *mMainWindow = nullptr;
0026 };