| 73 | #endif |
| 74 | |
| 75 | class Callback |
| 76 | { |
| 77 | public: |
| 78 | virtual ~Callback() {} |
| 79 | virtual void curPageChanged(int curPage) = 0; |
| 80 | }; |
| 81 | |
| 82 | LeftSideWidget(Widget* parent, Callback* const cb) |
| 83 | : SubWidget(parent), |
nothing calls this directly
no outgoing calls
no test coverage detected