summaryrefslogtreecommitdiff
path: root/include/Table.h
blob: 5b01aab27bbf24c2007d17eef1e5edef1fe3ea2f (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
#ifndef __TABLE_H__
#define __TABLE_H__
#ifdef __cplusplus

#include <Action.h>
#include <String.h>
#include <Exceptions.h>

class Table : public Action {
  public:
      Table(const String & titre, const String & url, String * heads, String * cells, int nbcol, int nblgn, Action * ok = 0);
      virtual ~Table() { }
    virtual String GetTitle();
    virtual Task * Do(Variables *, Handle *);

  private:
    String tit, * hds, * cls;
    int nc, nl;
    Action * Next;
};

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