void RecursiveStream::findUsedStreams(StreamList& streams, bool expandAll) const { RecordStream::findUsedStreams(streams); if (expandAll) { if (!streams.exist(m_mapStream)) streams.add(m_mapStream); m_root->findUsedStreams(streams, true); m_inner->findUsedStreams(streams, true); } }
void RecordStream::findUsedStreams(StreamList& streams, bool /*expandAll*/) const { if (!streams.exist(m_stream)) streams.add(m_stream); }