| 25 | } |
| 26 | void Clear() {_w=0, _h=0, _data.Free();} |
| 27 | int W() const {return _w;} |
| 28 | int H() const {return _h;} |
| 29 | const Type &Get( int x, int y ) const {return _data[y*_w+x];} |
| 30 | Type &Set( int x, int y ) {return _data[y*_w+x];} |
no outgoing calls
no test coverage detected