summaryrefslogtreecommitdiffstats
path: root/src/tdesvn_events.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tdesvn_events.h')
-rw-r--r--src/tdesvn_events.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tdesvn_events.h b/src/tdesvn_events.h
new file mode 100644
index 0000000..e8de055
--- /dev/null
+++ b/src/tdesvn_events.h
@@ -0,0 +1,17 @@
+#ifndef __KDESVN_EVENTS_H
+#define __KDESVN_EVENTS_H
+
+#include <tqevent.h>
+#include "src/svnqt/svnqt_defines.hpp"
+
+class FillCacheStatusEvent:public TQCustomEvent
+{
+ public:
+ FillCacheStatusEvent(TQ_LLONG current,TQ_LLONG max);
+ TQ_LLONG current()const{return m_current;}
+ TQ_LLONG max()const{return m_max;}
+ private:
+ TQ_LLONG m_current,m_max;
+};
+
+#endif