paysages3d/src/definition/DefinitionDiff.cpp

13 lines
330 B
C++

#include "DefinitionDiff.h"
#include "DefinitionNode.h"
DefinitionDiff::DefinitionDiff(const DefinitionNode *node) : type_name(node->getTypeName()), path(node->getPath()) {
}
DefinitionDiff::DefinitionDiff(const DefinitionDiff *other) : type_name(other->type_name), path(other->path) {
}
DefinitionDiff::~DefinitionDiff() {
}