\r\n

51Degrees Device Detection C/C++  4.1Newer Version 4.4

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

ValueMetaDataCollectionForPropertyHash.hpp

1 /* *********************************************************************
2  * This Original Work is copyright of 51 Degrees Mobile Experts Limited.
3  * Copyright 2019 51 Degrees Mobile Experts Limited, 5 Charlotte Close,
4  * Caversham, Reading, Berkshire, United Kingdom RG4 7BY.
5  *
6  * This Original Work is licensed under the European Union Public Licence (EUPL)
7  * 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_FOR_PROPERTY_HASH_HPP
24 #define FIFTYONE_DEGREES_VALUE_META_DATA_COLLECTION_FOR_PROPERTY_HASH_HPP
25 
26 #include "../common-cxx/Collection.hpp"
27 #include "../common-cxx/PropertyMetaData.hpp"
28 #include "ValueMetaDataCollectionBaseHash.hpp"
29 #include "ValueMetaDataBuilderHash.hpp"
30 #include "hash.h"
31 
32 using namespace std;
33 using namespace FiftyoneDegrees::Common;
34 
35 namespace FiftyoneDegrees {
36  namespace DeviceDetection {
37  namespace Hash {
44  public:
60  PropertyMetaData *property);
61 
66 
73  ValueMetaData* getByIndex(uint32_t index);
74 
75  ValueMetaData* getByKey(ValueMetaDataKey key);
76 
77  uint32_t getSize();
78 
82  private:
87  fiftyoneDegreesProperty* getProperty();
88 
90  fiftyoneDegreesCollectionItem propertyItem;
91  };
92  }
93  }
94 }
95 
96 #endif
A collection of value meta data relating to a property contained in a Hash engine.
Definition: ValueMetaDataCollectionForPropertyHash.hpp:42
Used to store a handle to the underlying item that could be used to release the item when it's finish...
Definition: collection.h:309
51Degrees base namespace.
Definition: ComponentMetaDataBuilderHash.hpp:34
A collection of all value meta data contained in a Hash engine.
Definition: ValueMetaDataCollectionBaseHash.hpp:40
Meta data relating to a property populated by an engine implementation.
Definition: PropertyMetaData.hpp:38
Meta data relating to a value populated by an engine implementation.
Definition: ValueMetaData.hpp:117
Key used to store ValueMetaData in a Collection.
Definition: ValueMetaData.hpp:41
Property structure containing all the meta data relating to a property.
Definition: property.h:82
Manager structure used to provide access to a shared and changing resource.
Definition: resource.h:188
Shared classes.
Definition: Collection.hpp:32