| 68 | } // CartGridFunctionSet |
| 69 | |
| 70 | void |
| 71 | CartGridFunctionSet::addFunction(Pointer<CartGridFunction> fcn) |
| 72 | { |
| 73 | #if !defined(NDEBUG) |
| 74 | TBOX_ASSERT(fcn); |
| 75 | #endif |
| 76 | d_fcns.push_back(fcn); |
| 77 | return; |
| 78 | } // addFunction |
| 79 | |
| 80 | bool |
| 81 | CartGridFunctionSet::isTimeDependent() const |
no test coverage detected