blob: 3ed7c12ba9d1bfe454e04e430472b518293a5c04 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PERIDOT_BIN_SUGGESTION_ENGINE_RANKING_FEATURES_FOCUSED_STORY_RANKING_FEATURE_H_
#define PERIDOT_BIN_SUGGESTION_ENGINE_RANKING_FEATURES_FOCUSED_STORY_RANKING_FEATURE_H_
#include <fuchsia/modular/cpp/fidl.h>
#include "peridot/bin/suggestion_engine/ranking_features/ranking_feature.h"
namespace modular {
class FocusedStoryRankingFeature : public RankingFeature {
public:
FocusedStoryRankingFeature();
~FocusedStoryRankingFeature() override;
private:
double ComputeFeatureInternal(const fuchsia::modular::UserInput& query,
const RankedSuggestion& suggestion) override;
fuchsia::modular::ContextSelectorPtr CreateContextSelectorInternal() override;
};
} // namespace modular
#endif // PERIDOT_BIN_SUGGESTION_ENGINE_RANKING_FEATURES_FOCUSED_STORY_RANKING_FEATURE_H_