diff --git a/src/uml/command_parser.cc b/src/uml/command_parser.cc index f6b945c6..50a464e4 100644 --- a/src/uml/command_parser.cc +++ b/src/uml/command_parser.cc @@ -30,6 +30,9 @@ std::shared_ptr command::from_string(std::string_view c) if (c.find("note") == 0) { return note::from_string(c); } + else if (c.find("skip") == 0) { + return skip::from_string(c); + } else if (c.find("style") == 0) { return style::from_string(c); } @@ -66,6 +69,13 @@ std::shared_ptr note::from_string(std::string_view c) return res; } +std::shared_ptr skip::from_string(std::string_view c) +{ + auto res = std::make_shared(); + return res; +} + + std::shared_ptr style::from_string(std::string_view c) { auto res = std::make_shared