\r\n

51Degrees Device Detection C/C++  4.4

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

ComponentMetaData.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_COMPONENT_META_DATA_HPP
24 #define FIFTYONE_DEGREES_COMPONENT_META_DATA_HPP
25 
26 #include <string>
27 #include "EntityMetaData.hpp"
28 
29 
30 namespace FiftyoneDegrees {
31  namespace Common {
36  class ComponentMetaData : public EntityMetaData<byte> {
37  public:
48 
56 
66  byte componentId,
67  string name,
68  uint32_t defaultProfileId);
69 
80  int getComponentIdAsInt() const;
81 
86  byte getComponentId() const;
87 
92  string getName() const;
93 
98  uint32_t getDefaultProfileId() const;
99 
103  private:
105  string name;
106 
108  uint32_t defaultProfileId;
109  };
110  }
111 }
112 
113 #endif
int getComponentIdAsInt() const
Get the unique if of the component as an integer.
51Degrees base namespace.
Definition: ComponentMetaDataBuilderHash.hpp:33
uint32_t getDefaultProfileId() const
Get the unique id for the default profile for this component.
ComponentMetaData()
Default constructor, should not be used externally as it produces an invalid instance.
string getName() const
Get the name of the component.
EntityMetaData relating to a component populated by an engine implementation.
Definition: ComponentMetaData.hpp:36
Base class for any entity meta data.
Definition: EntityMetaData.hpp:46
byte getComponentId() const
Get the unique id of the component.