OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[hengbandforosx/hengbandosx.git] / src / object-use / read / read-executor-base.h
1 #pragma once
2
3 class ReadExecutorBase {
4 public:
5     virtual ~ReadExecutorBase() = default;
6
7     virtual bool read() = 0;
8     virtual bool is_identified() const = 0;
9
10 protected:
11     ReadExecutorBase() = default;
12 };