chromium/media/learning/common/learning_task.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/learning/common/learning_task.h"

#include "base/hash/hash.h"
#include "base/no_destructor.h"

namespace media {
namespace learning {

LearningTask::LearningTask() = default;

LearningTask::LearningTask(
    const std::string& name,
    Model model,
    std::initializer_list<ValueDescription> feature_init_list,
    ValueDescription target_description)
    :{}

LearningTask::LearningTask(const LearningTask&) = default;

LearningTask::~LearningTask() = default;

LearningTask::Id LearningTask::GetId() const {}

// static
const LearningTask& LearningTask::Empty() {}

}  // namespace learning
}  // namespace media