summaryrefslogtreecommitdiffstats
path: root/src/tdesvn_events.h
blob: e8de055810e1572304c61bb0d3034262a4ae4ce8 (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 <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