The Line class
class Line {
public:
Line(int);
void reset();
bool canfit(string);
void append(string);
void print(FILE*);
private:
string w;
int max;
};
Previous slide
Next slide
Back to first slide
View graphic version