| 57 | // This nested class is instantiated each time a virtual table is scanned. |
| 58 | class Cursor { friend class CustomTable; |
| 59 | static inline CustomTable::Cursor* Upcast(sqlite3_vtab_cursor* cursor) { |
| 60 | return reinterpret_cast<Cursor*>(cursor); |
| 61 | } |
| 62 | |
| 63 | inline sqlite3_vtab_cursor* Downcast() { |
| 64 | return reinterpret_cast<sqlite3_vtab_cursor*>(this); |
nothing calls this directly
no outgoing calls
no test coverage detected