| 186 | } |
| 187 | |
| 188 | void vtkSQLDatabaseGraphSource::SetVertexQuery(const vtkStdString& query) |
| 189 | { |
| 190 | if (query == this->Implementation->VertexQueryString) |
| 191 | return; |
| 192 | |
| 193 | this->Implementation->VertexQueryString = query; |
| 194 | this->Modified(); |
| 195 | } |
| 196 | |
| 197 | void vtkSQLDatabaseGraphSource::AddLinkVertex(const char* column, const char* domain, int hidden) |
| 198 | { |