summaryrefslogtreecommitdiff
path: root/includes/Input.h
blob: 71e6845b611dc87d1c9b4b0923d03d6a8287d472 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include <Handle.h>

namespace Balau {

class Input : public SeekableHandle {
  public:
      Input(const char * fname) throw (GeneralException);
    virtual void close() throw (GeneralException);
    virtual bool isClosed();
    virtual bool canRead();
    virtual const char * getName();
    virtual off_t getSize();
    virtual time_t getMTime();
  private:
    int m_fd;
    String m_name;
    off_t m_size;
    time_t m_mtime;
};

};