| 890 | |
| 891 | template <class ImageType> |
| 892 | ImageBaseSwitch<ImageType>::ImageBaseSwitch(Widget* const parentWidget, const ImageType& imageNormal, const ImageType& imageDown) noexcept |
| 893 | : SubWidget(parentWidget), |
| 894 | pData(new PrivateData(imageNormal, imageDown)) |
| 895 | { |
| 896 | setSize(imageNormal.getSize()); |
| 897 | } |
| 898 | |
| 899 | template <class ImageType> |
| 900 | ImageBaseSwitch<ImageType>::ImageBaseSwitch(const ImageBaseSwitch<ImageType>& imageSwitch) noexcept |
nothing calls this directly
no test coverage detected