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.
|
|
|
/*
|
|
|
|
This file is or will be part of KDE desktop environment
|
|
|
|
|
|
|
|
Copyright 1998 Sven Radej <sven@lisa.exp.univie.ac.at>
|
|
|
|
|
|
|
|
It is licensed under GPL version 2.
|
|
|
|
|
|
|
|
If it is part of KDE libraries than this file is licensed under
|
|
|
|
LGPL version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _KDIRWATCHTEST_H_
|
|
|
|
#define _KDIRWATCHTEST_H_
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <tqobject.h>
|
|
|
|
|
|
|
|
#include "kdirwatch.h"
|
|
|
|
#include "kapplication.h"
|
|
|
|
|
|
|
|
class myTest : public TQObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
myTest() { };
|
|
|
|
public slots:
|
|
|
|
void dirty(const TQString &a) { printf("Dirty: %s\n", a.ascii()); };
|
|
|
|
void created(const TQString& f) { printf("Created: %s\n", f.ascii()); }
|
|
|
|
void deleted(const TQString& f) { printf("Deleted: %s\n", f.ascii()); }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|