blob: 493043c015941111a4991db53b497caf594c3d8b (
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
|
/*
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 "tdeapplication.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
|