add hierarchical node

This commit is contained in:
Сергей Маринкевич
2025-07-24 15:14:08 +07:00
parent 55ef99c848
commit c228caaa45
15 changed files with 330 additions and 46 deletions
+2 -1
View File
@@ -2,6 +2,7 @@
#include <iostream>
#include "mixins/BaseLinkMixin.h"
#include <memory>
#include "Logger.h"
template <class TLink>
class LazyLinkMixin : public BaseLinkMixin {
@@ -22,7 +23,7 @@ public:
LazyLinkMixin() {}
~LazyLinkMixin() override {
std::cout << "--- Destructor called for: " << "LazyLinkMixin" << "\n";
Logger::get("Mixin").dbg("--- Destructor called for: LazyLinkMixin");
}
protected: