\r\n

51Degrees Device Detection C/C++  4.4

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

PropertyMetaDataCollectionForComponentHash.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_PROPERTY_META_DATA_COLLECTION_FOR_COMPONENT_HASH_HPP
24 #define FIFTYONE_DEGREES_PROPERTY_META_DATA_COLLECTION_FOR_COMPONENT_HASH_HPP
25 
26 #include "../common-cxx/Collection.hpp"
27 #include "../common-cxx/PropertyMetaData.hpp"
28 #include "../common-cxx/ComponentMetaData.hpp"
29 #include "ComponentMetaDataBuilderHash.hpp"
30 #include "PropertyMetaDataCollectionHash.hpp"
31 #include "hash.h"
32 #include <memory>
33 
34 using namespace FiftyoneDegrees::Common;
35 
36 namespace FiftyoneDegrees {
37  namespace DeviceDetection {
38  namespace Hash {
44  : public Collection<string, PropertyMetaData> {
45  public:
61  ComponentMetaData *component);
62 
73 
74  PropertyMetaData* getByIndex(uint32_t index) const;
75 
76  PropertyMetaData* getByKey(string name) const;
77 
78  uint32_t getSize() const;
79 
83  private:
88  vector<shared_ptr<PropertyMetaData>> properties;
89  };
90  }
91  }
92 }
93 
94 #endif
51Degrees base namespace.
Definition: ComponentMetaDataBuilderHash.hpp:33
EntityMetaData relating to a component populated by an engine implementation.
Definition: ComponentMetaData.hpp:36
Meta data relating to a property populated by an engine implementation.
Definition: PropertyMetaData.hpp:37
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
A collection of property meta data relating to a component contained in a Hash engine.
Definition: PropertyMetaDataCollectionForComponentHash.hpp:43
Shared classes.
Definition: Collection.hpp:31