diff options
Diffstat (limited to 'include/Table.h')
-rw-r--r-- | include/Table.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/include/Table.h b/include/Table.h index c972fa3..00de842 100644 --- a/include/Table.h +++ b/include/Table.h @@ -1,21 +1,21 @@ -#ifndef __TABLE_H__ -#define __TABLE_H__ - -#include <Action.h> -#include <BString.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 *, Variables *, Handle *); - - private: - String tit, * hds, * cls; - int nc, nl; - Action * Next; -}; - -#endif +#ifndef __TABLE_H__
+#define __TABLE_H__
+
+#include <Action.h>
+#include <BString.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 *, Variables *, Handle *);
+
+ private:
+ String tit, * hds, * cls;
+ int nc, nl;
+ Action * Next;
+};
+
+#endif
|