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.
18 lines
389 B
18 lines
389 B
15 years ago
|
#ifndef __KDESVN_EVENTS_H
|
||
|
#define __KDESVN_EVENTS_H
|
||
|
|
||
14 years ago
|
#include <tqevent.h>
|
||
15 years ago
|
#include "src/svnqt/svnqt_defines.hpp"
|
||
|
|
||
14 years ago
|
class FillCacheStatusEvent:public TQCustomEvent
|
||
15 years ago
|
{
|
||
|
public:
|
||
14 years ago
|
FillCacheStatusEvent(TQ_LLONG current,TQ_LLONG max);
|
||
|
TQ_LLONG current()const{return m_current;}
|
||
|
TQ_LLONG max()const{return m_max;}
|
||
15 years ago
|
private:
|
||
14 years ago
|
TQ_LLONG m_current,m_max;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|