| 401 | |
| 402 | namespace cmd { |
| 403 | void init_grid() { |
| 404 | reg(std::make_unique<grid_line_next>()); |
| 405 | reg(std::make_unique<grid_line_next_create>()); |
| 406 | reg(std::make_unique<grid_line_prev>()); |
| 407 | reg(std::make_unique<grid_sort_actor>()); |
| 408 | reg(std::make_unique<grid_sort_effect>()); |
| 409 | reg(std::make_unique<grid_sort_end>()); |
| 410 | reg(std::make_unique<grid_sort_layer>()); |
| 411 | reg(std::make_unique<grid_sort_start>()); |
| 412 | reg(std::make_unique<grid_sort_style>()); |
| 413 | reg(std::make_unique<grid_sort_actor_selected>()); |
| 414 | reg(std::make_unique<grid_sort_effect_selected>()); |
| 415 | reg(std::make_unique<grid_sort_end_selected>()); |
| 416 | reg(std::make_unique<grid_sort_layer_selected>()); |
| 417 | reg(std::make_unique<grid_sort_start_selected>()); |
| 418 | reg(std::make_unique<grid_sort_style_selected>()); |
| 419 | reg(std::make_unique<grid_move_down>()); |
| 420 | reg(std::make_unique<grid_move_up>()); |
| 421 | reg(std::make_unique<grid_swap>()); |
| 422 | reg(std::make_unique<grid_tag_cycle_hiding>()); |
| 423 | reg(std::make_unique<grid_tags_hide>()); |
| 424 | reg(std::make_unique<grid_tags_show>()); |
| 425 | reg(std::make_unique<grid_tags_simplify>()); |
| 426 | } |
| 427 | } |
no test coverage detected