blob: 509125e18f72ead48684a95ea1e2546763006a16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __KDESVN_EVENTS_H
#define __KDESVN_EVENTS_H
#include <qevent.h>
#include "src/svnqt/svnqt_defines.hpp"
class FillCacheStatusEvent:public QCustomEvent
{
public:
FillCacheStatusEvent(Q_LLONG current,Q_LLONG max);
Q_LLONG current()const{return m_current;}
Q_LLONG max()const{return m_max;}
private:
Q_LLONG m_current,m_max;
};
#endif
|