blob: 7494de85fdbebe581ed7f706d41ac662bfd14c9d [file] [log] [blame]
Alex Vakulenko7c36b672014-07-16 14:50:58 -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/command_definition.h"
6
7namespace buffet {
8
9CommandDefinition::CommandDefinition(
10 const std::string& category,
Anton Muhin71fb9d52014-11-21 22:22:39 +040011 const std::shared_ptr<const ObjectSchema>& parameters,
12 const std::shared_ptr<const ObjectSchema>& results)
13 : category_(category), parameters_(parameters), results_(results) {
Alex Vakulenko7c36b672014-07-16 14:50:58 -070014}
15
16} // namespace buffet