| 2332 | |
| 2333 | // Verify a pointer (may be NULL) of a table type. |
| 2334 | template<typename T> bool VerifyTable(const T *table) { |
| 2335 | return !table || table->Verify(*this); |
| 2336 | } |
| 2337 | |
| 2338 | // Verify a pointer (may be NULL) of any vector type. |
| 2339 | template<typename T> bool VerifyVector(const Vector<T> *vec) const { |