\r\n

51Degrees Device Detection C/C++  4.4

A device detection library that is used natively or by 51Degrees products

EvidenceBase.hpp

1 /* *********************************************************************
2  * This Original Work is copyright of 51 Degrees Mobile Experts Limited.
3  * Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
4  * Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
5  *
6  * This Original Work is licensed under the European Union Public Licence
7  * (EUPL) v.1.2 and is subject to its terms as set out below.
8  *
9  * If a copy of the EUPL was not distributed with this file, You can obtain
10  * one at https://opensource.org/licenses/EUPL-1.2.
11  *
12  * The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
13  * amended by the European Commission) shall be deemed incompatible for
14  * the purposes of the Work and the provisions of the compatibility
15  * clause in Article 5 of the EUPL shall not apply.
16  *
17  * If using the Work as, or as part of, a network application, by
18  * including the attribution notice(s) required under Article 5 of the EUPL
19  * in the end user terms of the application under an appropriate heading,
20  * such notice(s) shall fulfill the requirements of that article.
21  * ********************************************************************* */
22 
23 #ifndef FIFTYONE_DEGREES_EVIDENCE_BASE_HPP
24 #define FIFTYONE_DEGREES_EVIDENCE_BASE_HPP
25 
26 #include <string>
27 #include <map>
28 #include "Exceptions.hpp"
29 #include "evidence.h"
30 
31 using std::map;
32 using std::make_shared;
33 using std::invalid_argument;
34 using std::stringstream;
35 
36 namespace FiftyoneDegrees {
37  namespace Common {
67  class EvidenceBase : public map<string, string> {
68  public:
77  EvidenceBase();
78 
82  virtual ~EvidenceBase();
83 
97 
107  void clear();
108 
113  void erase(iterator position);
114 
120  void erase(iterator first, iterator last);
121 
125  protected:
133  virtual bool isRelevant(fiftyoneDegreesEvidencePrefix prefix);
134  private:
137  };
138  }
139 }
140 
141 #endif
virtual ~EvidenceBase()
Free all the underlying memory containing the evidence.
Base evidence class containing evidence to be processed by an engine.
Definition: EvidenceBase.hpp:67
void clear()
Clear all evidence items from the instance.
virtual bool isRelevant(fiftyoneDegreesEvidencePrefix prefix)
Get whether or not the evidence key prefix is relevant or not.
51Degrees base namespace.
Definition: ComponentMetaDataBuilderHash.hpp:33
EvidenceBase()
Construct a new instance containing no evidence.
fiftyoneDegreesEvidenceKeyValuePairArray * get()
Get the underlying C structure containing the evidence.
fiftyoneDegreesEvidencePrefix
Evidence prefixes used to determine the category a piece of evidence belongs to.
Definition: evidence.h:133
void erase(iterator position)
Remove the evidence item at the position indicated.
Array of items of type fiftyoneDegreesEvidenceKeyValuePair used to easily access and track the size o...
Definition: evidence.h:172
Definition: GettingStarted.c:65