blob: 28f78888dc53eeaf5c513d5f80022a3183e6b6bf [file] [log] [blame] [raw]
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
#include "unit.h"
typedef struct Target Target;
struct Target {
Unit meta;
TargetState state, deserialized_state;
};
extern const UnitVTable target_vtable;
DEFINE_CAST(TARGET, Target);