blob: 2e78ce53e031ef4044bad35be0a9c4b491c7b6c4 [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 "src/commands/prop_values.h"
#include "src/commands/prop_types.h"
namespace weave {
PropValue::PropValue(const PropType& type) : type_{type.Clone()} {}
PropValue::PropValue(const PropValue& other) : PropValue{*other.type_} {}
PropValue::~PropValue() {}
} // namespace weave