blob: 576384475a8ddcf8849df1cc5bd9c951515cbc97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/***************************************************************************
collectionscannerdcophandler.h - DCOP Interface
-------------------
begin : 16/08/05
copyright : (C) 2006 by Jeff Mitchell
email : kde-dev@emailgoeshere.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef COLLECTIONSCANNER_DCOP_HANDLER_H
#define COLLECTIONSCANNER_DCOP_HANDLER_H
#include "collectionscannerdcopiface.h"
#include <tqobject.h>
#include <tdeapplication.h>
class DcopCollectionScannerHandler : public TQObject, virtual public CollectionScannerInterface
{
Q_OBJECT
public:
DcopCollectionScannerHandler();
signals:
void pauseRequest();
void unpauseRequest();
public:
virtual void pause();
virtual void unpause();
};
#endif
|