You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
377 B
26 lines
377 B
4 years ago
|
#ifndef AKONADISERVER_H
|
||
|
#define AKONADISERVER_H
|
||
|
|
||
|
#include <QtCore/QPointer>
|
||
|
#include <QtCore/QVector>
|
||
|
|
||
|
#include <QtNetwork/QLocalServer>
|
||
|
|
||
|
class QProcess;
|
||
|
|
||
|
namespace Akonadi {
|
||
|
namespace Server {
|
||
|
|
||
|
class AkonadiServer : public QLocalServer
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
~AkonadiServer();
|
||
|
static AkonadiServer *instance();
|
||
|
};
|
||
|
|
||
|
} // namespace Server
|
||
|
} // namespace Akonadi
|
||
|
#endif
|