#ifndef __TABLE_H__ #define __TABLE_H__ #ifdef __cplusplus #include #include #include 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 *, Variables *, Handle *); private: String tit, * hds, * cls; int nc, nl; Action * Next; }; #else #error This only works with a C++ compiler #endif #endif