| 125 | DataReader::DataReader(const DataEngine& engine) : engine_(engine) {} |
| 126 | |
| 127 | std::vector<DatasetId> DataReader::listDatasets() const { |
| 128 | return engine_.listDatasets(); |
| 129 | } |
| 130 | |
| 131 | std::vector<TopicId> DataReader::listTopics(DatasetId dataset_id) const { |
| 132 | return engine_.listTopics(dataset_id); |
no outgoing calls