summaryrefslogtreecommitdiffstats
path: root/src/tools/rbd_mirror/image_replayer/ReplayerListener.h
blob: f17f401b1fd15b42d99b4c34455c70584056a3eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#ifndef RBD_MIRROR_IMAGE_REPLAYER_REPLAYER_LISTENER_H
#define RBD_MIRROR_IMAGE_REPLAYER_REPLAYER_LISTENER_H

namespace rbd {
namespace mirror {
namespace image_replayer {

struct ReplayerListener {
  virtual ~ReplayerListener() {}

  virtual void handle_notification() = 0;
};

} // namespace image_replayer
} // namespace mirror
} // namespace rbd

#endif // RBD_MIRROR_IMAGE_REPLAYER_REPLAYER_LISTENER_H