Skip to content
Snippets Groups Projects
  • Benjamin Cumming's avatar
    Decor (#1235) · ac63809f
    Benjamin Cumming authored
    Make the `cable_cell` interface read only by passing the decorations
    to its constructor in a new `decor` type.
    
    C++ library
    * Remove the paint/place/set_default interface from `cable_cell`
    * Create a `decor` type that:
      * stores lists of paintings and placings
      * stores a set of cable cell parameters
      * uses the `paint`, `place`, `set_default` interface that was deprecated
        from `cable_cell`.
    * Create `paintable`, `placeable` and `defaultable` variants that are sum types
      over the respective types that can be painted, placed and defaulted.
    * Remove the overloaded `cable_cell::paint`, `cable_cell::place`,
      `cable_cell::set_default` methods to single methods that consume the sum types.
    
    Unit Tests
    * Many small changes because many many tests use cable cell API.
    * There were no `cable_cell` unit tests! Not such a big deal, since cable_cell
      is tested implicitly in so many other tests
      * but I added cable_cell tests: not much at the moment but will quickly fill
        ...
    Unverified
    ac63809f
common_cells.cpp 7.59 KiB