summaryrefslogtreecommitdiffstats
path: root/karm/test/lockerthread.h
blob: 95915b47884e147ba20b402c78a9e553dc5ceed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <tqthread.h>

class QString;

/** 
 * Attempt to open and lock a calendar resource in a seperate thread.
 *
 * Result of attempt returned by gotlock().
 */
class LockerThread : public QThread
{
  public:
    LockerThread( const TQString &filename );
    //void setIcsFile( const TQString &filename );
    void run();
    bool gotlock() const { return m_gotlock; };

  private:
    TQString m_icsfile;
    bool    m_gotlock;
};