Bluenet  5.7.0
Bluenet, firmware for nRF52 smart home devices
Loading...
Searching...
No Matches
cs_TrackableEvent.h
Go to the documentation of this file.
1/*
2 * Author: Crownstone Team
3 * Copyright: Crownstone (https://crownstone.rocks)
4 * Date: Nov 20, 2020
5 * License: LGPLv3+, Apache License 2.0, and/or MIT (triple-licensed)
6 */
7
8#pragma once
9
10#include <util/cs_AssetFilter.h>
11
13public:
16
17 AssetAcceptedEvent(AssetFilter filter, const scanned_device_t& asset) : _primaryFilter(filter), _asset(asset) {}
18};
Definition: cs_TrackableEvent.h:12
const scanned_device_t & _asset
Definition: cs_TrackableEvent.h:15
AssetAcceptedEvent(AssetFilter filter, const scanned_device_t &asset)
Definition: cs_TrackableEvent.h:17
AssetFilter _primaryFilter
Definition: cs_TrackableEvent.h:14
Class that contains all data required for an asset filter:
Definition: cs_AssetFilter.h:19
Scanned device.
Definition: cs_PacketsInternal.h:107