blob: a4dc391602c1dbb8121e6769204e323d26e51c77 [file] [log] [blame]
Alex Vakulenkoe439a0f2014-05-21 12:26:47 -07001// Copyright 2014 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "buffet/commands/prop_values.h"
6
Alex Vakulenko5ef75792015-03-19 15:50:44 -07007#include "buffet/commands/prop_types.h"
8
Alex Vakulenkoe439a0f2014-05-21 12:26:47 -07009namespace buffet {
10
Alex Vakulenko5ef75792015-03-19 15:50:44 -070011PropValue::PropValue(std::unique_ptr<const PropType> type)
12 : type_{std::move(type)} {}
13
14PropValue::PropValue(const PropType* type_ptr)
15 : type_{type_ptr->Clone()} {}
16
17PropValue::~PropValue() {}
Alex Vakulenkoe439a0f2014-05-21 12:26:47 -070018
19} // namespace buffet