summaryrefslogtreecommitdiff
path: root/include/ReadJob.h
blob: ae0eef72cba57e448a0070bf6160f823df86cc52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __READJOB_H__
#define __READJOB_H__
#ifdef __cplusplus

#include <Task.h>
#include <Handle.h>
#include <Regex.h>

class ReadJob : public Task {
  public:
      ReadJob(Handle *, Handle *);
      virtual ~ReadJob();
    virtual int Do() throw (GeneralException);
    virtual String GetName();

  private:
    Handle * s, * d;
};

#else
#error This only works with a C++ compiler
#endif
#endif