nx_cloud_storage_sdk  1.0
Cloud Storage SDK
i_ref_countable_registry.h
1 // Copyright 2018-present Network Optix, Inc. Licensed under MPL 2.0: www.mozilla.org/MPL/2.0/
2 
3 #pragma once
4 
5 #include <nx/sdk/i_ref_countable.h>
6 
7 namespace nx::sdk {
8 
26 {
27 public:
29  virtual ~IRefCountableRegistry() = default;
30 
31  virtual void notifyCreated(
32  const nx::sdk::IRefCountable* refCountable, int refCount) = 0;
33 
34  virtual void notifyDestroyed(
35  const nx::sdk::IRefCountable* refCountable, int refCount) = 0;
36 };
37 
38 } // namespace nx::sdk
Definition: i_ref_countable_registry.h:25
virtual ~IRefCountableRegistry()=default
Definition: i_ref_countable.h:48