Just move all the one-liner functions straight into the parser.

This commit is contained in:
Zed A. Shaw 2025-02-15 12:21:04 -05:00
parent 60ed686eb0
commit d558da1620
4 changed files with 38 additions and 76 deletions

View file

@ -32,17 +32,8 @@ namespace lel {
std::unordered_map<std::string, Cell> cells;
Parser(int x, int y, int width, int height);
void col();
void ltab();
void align(char dir);
void valign(char dir);
void id(std::string name);
void row();
void setwidth(int width);
void setheight(int height);
void expand();
void reset();
void center();
bool parse(std::string input);
void finalize();
};