File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -201,22 +201,20 @@ class QgsRasterBlock
201
201
* @param row row index
202
202
* @param column column index
203
203
* @return pointer to data
204
- * @note not available in python bindings
205
204
*/
206
- // char * bits( int row, int column );
205
+ void * bits( int row, int column ) /PyName=bitsByRowCol/ [char * ()] ;
207
206
208
207
/** \brief Get pointer to data
209
208
* @param index data matrix index (long type in Python)
210
209
* @return pointer to data
211
- * @note not available in python bindings
212
210
*/
213
- // char * bits( qgssize index );
211
+ void * bits( qgssize index ) /PyName=bitsByIndex/ [char * ()] ;
214
212
215
213
/** \brief Get pointer to data
216
214
* @return pointer to data
217
215
* @note not available in python bindings
218
216
*/
219
- // char * bits() ;
217
+ void *bits() [ char * ()] ;
220
218
221
219
/** \brief Print double value with all necessary significant digits.
222
220
* It is ensured that conversion back to double gives the same number.
You can’t perform that action at this time.
0 commit comments