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

#ifndef CEPH_RBD_MIRROR_INSTANCES_TYPES_H
#define CEPH_RBD_MIRROR_INSTANCES_TYPES_H

#include <string>
#include <vector>

namespace rbd {
namespace mirror {
namespace instances {

struct Listener {
  typedef std::vector<std::string> InstanceIds;

  virtual ~Listener() {
  }

  virtual void handle_added(const InstanceIds& instance_ids) = 0;
  virtual void handle_removed(const InstanceIds& instance_ids) = 0;
};

} // namespace instances
} // namespace mirror
} // namespace rbd

#endif // CEPH_RBD_MIRROR_INSTANCES_TYPES_H