diff options
author | pixel <pixel> | 2004-11-27 21:46:02 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-11-27 21:46:02 +0000 |
commit | ae2779e504ca5ae11a87e047b4536a5f428cce4d (patch) | |
tree | 19604ce1873e9cc98be9b840b894cb7eae341532 /include/Table.h | |
parent | 583964f9f8e954eb57b31663065c5b9e833d045e (diff) |
Large dos2unix commit...
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 00de842..c972fa3 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 |