blob: 0655c873ea3c8c713ea1504606fcfce47a5aa6ce [file] [log] [blame]
// Copyright 2020 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 LIBEC_FINGERPRINT_SENSOR_ID_H_
#define LIBEC_FINGERPRINT_SENSOR_ID_H_
#include <cstdint>
struct SensorId {
SensorId(uint32_t vendor_id,
uint32_t product_id,
uint32_t model_id,
uint32_t version)
: vendor_id(vendor_id),
product_id(product_id),
model_id(model_id),
version(version) {}
uint32_t vendor_id = 0;
uint32_t product_id = 0;
uint32_t model_id = 0;
uint32_t version = 0;
};
#endif // LIBEC_FINGERPRINT_SENSOR_ID_H_