Garmin Fleet Management Controller  2.19.0
SensorList.h
Go to the documentation of this file.
1 /*********************************************************************
2 *
3 * HEADER NAME:
4 * SensorList.h
5 *
6 * Copyright 2014 by Garmin Ltd. or its subsidiaries.
7 *---------------------------------------------------------------------
8 * $NoKeywords$
9 *********************************************************************/
10 #pragma once
11 
12 #ifndef _SENSORLIST_H
13 #define _SENSORLIST_H
14 
15 
16 #if( FMI_SUPPORT_A617 )
17 
18 #include "FileBackedMap.h"
19 #include "SensorListItem.h"
20 
21 class SensorList
22 {
23 public:
24  SensorList();
25 
26  void add
27  (
28  SensorListItem item
29  );
30 
34 
35  std::map<uint8, uint32> mSensorIndexInList;
36 };
37 #endif
38 
39 #endif
Data structure to hold details of an A617 sensor that the server needs to keep.