| 124 | |
| 125 | template<class T> |
| 126 | inline void MRandomDeck<T>::removeAll( Vector<T> *outItems ) |
| 127 | { |
| 128 | if ( outItems ) |
| 129 | { |
| 130 | outItems->merge( mPile ); |
| 131 | outItems->merge( mDeck ); |
| 132 | } |
| 133 | |
| 134 | mPile.clear(); |
| 135 | mDeck.clear(); |
| 136 | } |
| 137 | |
| 138 | #endif //_MRANDOMDECK_H_ |
no test coverage detected