blob: 28a2c4360cc64d125cea37190130667d3dac843a [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 "libweave/src/commands/prop_values.h"
#include "libweave/src/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