settings observers lifecycle

This commit is contained in:
MihailRis
2024-04-22 19:10:36 +03:00
parent 201209887f
commit 5b82b18c6f
6 changed files with 75 additions and 43 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef UTIL_OBJECTS_KEEPER_HPP_
#define UTIL_OBJECTS_KEEPER_HPP_
#include <vector>
#include <memory>
namespace util {
class ObjectsKeeper {
std::vector<std::shared_ptr<void>> ptrs;
public:
virtual ~ObjectsKeeper() {}
virtual void keepAlive(std::shared_ptr<void> ptr) {
ptrs.push_back(ptr);
}
};
}
#endif // UTIL_OBJECTS_KEEPER_HPP_