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

#include <String.h>
#include <Handle.h>

/*
 * Cette classe sert à créer un fichier ouvert en lecture.
 */

class Input : public Handle {
  public:
      Input(String = "") throw (GeneralException);
      virtual ~Input() {}
    virtual bool CanWrite();
    virtual bool CanRead();
    virtual String GetName();
  protected:
    String n;
};

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