| 2449 | |
| 2450 | // Verify a pointer (may be NULL) of a table type. |
| 2451 | template<typename T> bool VerifyTable(const T *table) { |
| 2452 | return !table || table->Verify(*this); |
| 2453 | } |
| 2454 | |
| 2455 | // Verify a pointer (may be NULL) of any vector type. |
| 2456 | template<typename T> bool VerifyVector(const Vector<T> *vec) const { |