You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
478 B
C++
18 lines
478 B
C++
#pragma once
|
|
#include <iostream>
|
|
|
|
#include "nodes/BaseNode.h"
|
|
#include "mixins/HierarchicalLinkMixin.h"
|
|
#include "Logger.h"
|
|
|
|
class ComplexNode : public BaseNode,
|
|
virtual public HierarchicalLinkMixin {
|
|
public:
|
|
~ComplexNode() {
|
|
Logger::get("Node").dbg(std::string("--- Complex destructor called for: ") + name_);
|
|
}
|
|
ComplexNode(std::string name) : BaseNode(std::move(name)) {
|
|
Logger::get("Node").dbg(std::string("--- Complex constructor called for: ") + name_);
|
|
}
|
|
};
|