File indexing completed on 2024-05-12 05:11:13

0001 /*
0002     SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QObject>
0010 
0011 /**
0012   This class uses the ClearErrorAction to mark all failed messages in the
0013   outbox for immediate sending.
0014 */
0015 class Runner : public QObject
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     Runner();
0021 
0022 private Q_SLOTS:
0023     void checkFolders();
0024 };