summaryrefslogtreecommitdiff
path: root/include/Output.h
blob: ef760125eeb3c005b01894ec5a77234f5872b8d3 (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 __OUTPUT_H__
#define __OUTPUT_H__
#ifdef __cplusplus

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

/*
 * Ouvre un fichier en ecriture.
 */

class Output : public Handle {
  public:
      Output(String = "", int trunc = 1) throw (GeneralException);
      virtual ~Output() {}
    virtual bool CanWrite();
    virtual bool CanRead();
    virtual String GetName();
  protected:
    String n;
};

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