summaryrefslogtreecommitdiff
path: root/include/Output.h
blob: 98af0ac55e48139ee12479af767c41ffa8c4b7bb (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