| 191 | virtual int AddOptionToTable( |
| 192 | int tblHandle, const char* optText, const char* optBackend = VTK_SQL_ALLBACKENDS); |
| 193 | virtual int AddOptionToTable( |
| 194 | const char* tblName, const char* optStr, const char* optBackend = VTK_SQL_ALLBACKENDS) |
| 195 | { |
| 196 | return this->AddOptionToTable(this->GetTableHandleFromName(tblName), optStr, optBackend); |
| 197 | } |
| 198 | ///@} |
| 199 | |
| 200 | /** |
nothing calls this directly
no test coverage detected