blob: 830f364a4cbde6f6a7ab43ef4025a88888c7db7d [file] [log] [blame]
// Copyright 2021 The Chromium OS 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 RMAD_UTILS_IIO_SENSOR_PROBE_UTILS_H_
#define RMAD_UTILS_IIO_SENSOR_PROBE_UTILS_H_
#include <set>
#include "rmad/constants.h"
namespace rmad {
class IioSensorProbeUtils {
public:
IioSensorProbeUtils() = default;
virtual ~IioSensorProbeUtils() = default;
virtual std::set<RmadComponent> Probe() = 0;
};
} // namespace rmad
#endif // RMAD_UTILS_IIO_SENSOR_PROBE_UTILS_H_