2015-08-16 21:01:56 +00:00
|
|
|
#include "DefinitionDiff.h"
|
|
|
|
|
|
|
|
#include "DefinitionNode.h"
|
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
DefinitionDiff::DefinitionDiff(const DefinitionNode *node) : type_name(node->getTypeName()), path(node->getPath()) {
|
2015-08-16 21:01:56 +00:00
|
|
|
}
|
2015-11-20 00:07:31 +00:00
|
|
|
|
2015-12-13 19:32:26 +00:00
|
|
|
DefinitionDiff::DefinitionDiff(const DefinitionDiff *other) : type_name(other->type_name), path(other->path) {
|
|
|
|
}
|
|
|
|
|
2015-11-20 00:07:31 +00:00
|
|
|
DefinitionDiff::~DefinitionDiff() {
|
|
|
|
}
|