changed naming scheme

This commit is contained in:
2024-07-07 20:10:31 -04:00
parent d85f375fbe
commit 6f998d8523
7 changed files with 32 additions and 32 deletions

View File

@ -7,15 +7,15 @@
class console_output final : public display {
private:
std::ostream &out;
std::string get_code(const int attr);
std::string get_code(const int attrs);
public:
console_output(std::ostream &cout);
void render() override;
void print_char(const position &pos,
const char ch, const int attr) override;
const char ch, const int attrs) override;
void print_str(const position &pos,
const std::string &str, const int attr) override;
const std::string &str, const int attrs) override;
};
#endif