blob: a4dc391602c1dbb8121e6769204e323d26e51c77 [file] [log] [blame]
// Copyright 2014 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "buffet/commands/prop_values.h"
#include "buffet/commands/prop_types.h"
namespace buffet {
PropValue::PropValue(std::unique_ptr<const PropType> type)
: type_{std::move(type)} {}
PropValue::PropValue(const PropType* type_ptr)
: type_{type_ptr->Clone()} {}
PropValue::~PropValue() {}
} // namespace buffet