41 using ReplyElem =
typename ScanReplyElem<TScanTag>::type;
43 virtual ~RequestScanDataBase() =
default;
45 void SetRequestDescription(std::string request_description) {
46 request_description_ = std::move(request_description);
49 virtual ReplyElem Get() = 0;
51 virtual ReplyElem& Current() = 0;
53 virtual bool Eof() = 0;
57 std::string request_description_;