Files
revng-revng/include/revng/Yield/RelationTarget.h
Alessandro Di Federico 1d91ed9beb tuple_tree_generator: make C++ just a regular backend
The `tuple_tree_generator` component was still heavily treating C++ as a
special citizen.
This commit normalizes the situation.
2022-08-11 16:20:42 +02:00

36 lines
597 B
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "revng/Yield/RelationType.h"
/* TUPLE-TREE-YAML
name: RelationTarget
type: struct
fields:
- name: Kind
type: RelationType
- name: Location
type: string
key:
- Kind
- Location
TUPLE-TREE-YAML */
#include "revng/Yield/Generated/Early/RelationTarget.h"
namespace yield {
class RelationTarget : public generated::RelationTarget {
public:
using generated::RelationTarget::RelationTarget;
};
} // namespace yield
#include "revng/Yield/Generated/Late/RelationTarget.h"