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.
33 lines
1008 B
33 lines
1008 B
/****************************************************************************
|
|
**
|
|
** DCOP Stub Definition created by dcopidl2cpp from kdirnotify.kidl
|
|
**
|
|
** WARNING! All changes made in this file will be lost!
|
|
**
|
|
*****************************************************************************/
|
|
|
|
#ifndef __KDIRNOTIFY_STUB__
|
|
#define __KDIRNOTIFY_STUB__
|
|
|
|
#include <dcopstub.h>
|
|
#include <dcopobject.h>
|
|
#include <kurl.h>
|
|
|
|
|
|
class TDEIO_EXPORT KDirNotify_stub : virtual public DCOPStub
|
|
{
|
|
public:
|
|
KDirNotify_stub( const TQCString& app, const TQCString& id );
|
|
KDirNotify_stub( DCOPClient* client, const TQCString& app, const TQCString& id );
|
|
explicit KDirNotify_stub( const DCOPRef& ref );
|
|
virtual ASYNC FilesAdded( const KURL& directory );
|
|
virtual ASYNC FilesRemoved( const KURL::List& fileList );
|
|
virtual ASYNC FilesChanged( const KURL::List& fileList );
|
|
virtual ASYNC FileRenamed( const KURL& src, const KURL& dst );
|
|
protected:
|
|
KDirNotify_stub() : DCOPStub( never_use ) {};
|
|
};
|
|
|
|
|
|
#endif
|