blob: 6f30beea7eb0a75635149b775ffba24cf34fb96b [file] [log] [blame]
// Copyright 2015 The Weave 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