| 152 | public: |
| 153 | void do_nothing() const {} |
| 154 | void increase_value() { |
| 155 | rw_value++; |
| 156 | ro_value += 0.25; |
| 157 | } |
| 158 | void set_int(int v) { rw_value = v; } |
| 159 | int get_int() const { return rw_value; } |
| 160 | double get_double() const { return ro_value; } |
no outgoing calls
no test coverage detected