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