\r\n

51Degrees Device Detection C/C++  4.4

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

ValueMetaDataCollectionBaseHash.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_VALUE_META_DATA_COLLECTION_BASE_HASH_HPP
24 #define FIFTYONE_DEGREES_VALUE_META_DATA_COLLECTION_BASE_HASH_HPP
25 
26 #include "../common-cxx/Collection.hpp"
27 #include "ValueMetaDataBuilderHash.hpp"
28 #include "hash.h"
29 
30 using namespace FiftyoneDegrees::Common;
31 
32 namespace FiftyoneDegrees {
33  namespace DeviceDetection {
34  namespace Hash {
40  : public Collection<ValueMetaDataKey, ValueMetaData> {
41  public:
55 
60 
67  ValueMetaData* getByKey(ValueMetaDataKey key) const;
68 
72  protected:
75  };
76  }
77  }
78 }
79 
80 #endif
51Degrees base namespace.
Definition: ComponentMetaDataBuilderHash.hpp:33
Data set structure containing all the components used for detections.
Definition: hash.h:295
A collection of all value meta data contained in a Hash engine.
Definition: ValueMetaDataCollectionBaseHash.hpp:39
Meta data relating to a value populated by an engine implementation.
Definition: ValueMetaData.hpp:116
Key used to store ValueMetaData in a Collection.
Definition: ValueMetaData.hpp:40
A group of items accessible by index or key.
Definition: Collection.hpp:78
Manager structure used to provide access to a shared and changing resource.
Definition: resource.h:173
fiftyoneDegreesDataSetHash * dataSet
Pointer to the underlying data set containing the values.
Definition: ValueMetaDataCollectionBaseHash.hpp:74
Shared classes.
Definition: Collection.hpp:31