00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef TABLE_H
00012 #define TABLE_H
00013
00014 #include <vector>
00015 #include <iostream>
00016
00017 class Table
00018 {
00019 public:
00020 enum Align {none, left, right, center};
00021
00022 Table(unsigned int columns, const char* title);
00023 ~Table();
00024 void align(unsigned int col, Align al);
00025 Align align(int col) const;
00026
00027 Table& operator<<(const char* s);
00028 Table& operator<<(int i);
00029
00030 const char* title() const { return t; }
00031 const char* item(unsigned int i) const;
00032 const char* item(unsigned int row, unsigned int col) const;
00033
00034 unsigned int columns() const { return c; }
00035 unsigned int rows() const;
00036
00037
00038
00039 unsigned int width(unsigned int col) const;
00040
00041
00042 static bool format;
00043 void print(std::ostream& o) const;
00044 void clean();
00045
00046 private:
00047 char* t;
00048 unsigned int c;
00049 std::vector<Align> a;
00050 std::vector<char*> v;
00051 };
00052
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081 #endif